-
Notifications
You must be signed in to change notification settings - Fork 1
/
ansr.gemspec
28 lines (26 loc) · 1.25 KB
/
ansr.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
require File.join(File.dirname(__FILE__), 'lib/ansr/version')
Gem::Specification.new do |spec|
spec.name = 'ansr'
spec.version = Ansr.version
spec.platform = Gem::Platform::RUBY
spec.authors = ["Benjamin Armintor"]
spec.email = ["[email protected]"]
spec.summary = 'ActiveRecord-style relations for no-sql data sources'
spec.description = 'Wrapping the no-sql data sources in Rails-like models and relations'
spec.homepage = 'http://github.com/barmintor/ansr'
spec.license = "APACHE2"
spec.required_ruby_version = '>= 1.9.3'
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency 'loggable'
spec.add_dependency 'arel', '~> 4', '>= 4.0.2'
spec.add_dependency "rails", ">= 3.2.6", "< 5"
spec.add_dependency "kaminari", "~> 0.13" # the pagination (page 1,2,3, etc..) of our search results
spec.add_development_dependency("rake")
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rspec-rails", ">=3"
spec.add_development_dependency("yard")
spec.add_development_dependency("jettywrapper")
end