forked from nertzy/pg_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg_search.gemspec
22 lines (19 loc) · 945 Bytes
/
pg_search.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pg_search/version"
Gem::Specification.new do |s|
s.name = "pg_search"
s.version = PgSearch::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Case Commons, LLC"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/Casecommons/pg_search"
s.summary = %q{PgSearch builds ActiveRecord named scopes that take advantage of PostgreSQL's full text search}
s.description = %q{PgSearch builds ActiveRecord named scopes that take advantage of PostgreSQL's full text search}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'activerecord', '>=3'
s.add_dependency 'activesupport', '>=3'
end