forked from mrkamel/search_cop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_cop.gemspec
27 lines (23 loc) · 1.08 KB
/
search_cop.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "search_cop/version"
Gem::Specification.new do |spec|
spec.name = "search_cop"
spec.version = SearchCop::VERSION
spec.authors = ["Benjamin Vetter"]
spec.email = ["[email protected]"]
spec.description = "Search engine like fulltext query support for ActiveRecord"
spec.summary = "Easily perform complex search engine like fulltext queries on your ActiveRecord models"
spec.homepage = "https://github.com/mrkamel/search_cop"
spec.license = "MIT"
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "treetop"
spec.add_development_dependency "activerecord", ">= 3.0.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "factory_bot"
spec.add_development_dependency "minitest"
spec.add_development_dependency "rake"
spec.add_development_dependency "rubocop"
end