forked from nertzy/pg_search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pg_search.gemspec
31 lines (26 loc) · 1.2 KB
/
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
23
24
25
26
27
28
29
30
31
# -*- 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 = ["Grant Hutchins", "Case Commons, LLC"]
s.email = ["gems@nertzy.com", "casecommons-dev@googlegroups.com"]
s.homepage = "https://github.com/Casecommons/pg_search"
s.summary = %q(PgSearch builds Active Record named scopes that take advantage of PostgreSQL's full text search)
s.description = %q(PgSearch builds Active Record named scopes that take advantage of PostgreSQL's full text search)
s.licenses = ["MIT"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency 'activerecord', '>= 3.1'
s.add_dependency 'activesupport', '>= 3.1'
s.add_dependency 'arel'
s.add_development_dependency 'rake'
s.add_development_dependency 'pry'
s.add_development_dependency 'rspec', '>= 3.3'
s.add_development_dependency 'with_model', '>= 1.2'
s.add_development_dependency 'rubocop', '>= 0.36'
s.required_ruby_version = ">= 1.9.2"
end