-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmongosteen.gemspec
43 lines (38 loc) · 1.44 KB
/
mongosteen.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
32
33
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'mongosteen/version'
Gem::Specification.new do |s|
s.name = 'mongosteen'
s.version = Mongosteen::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Alexander Kravets']
s.email = '[email protected]'
s.license = 'MIT'
s.homepage = 'https://github.com/slate-studio/mongosteen'
s.summary = 'An easy way to add restful actions'
s.description = <<-DESC
Mongosteen is a library that helps to easily add RESTful actions to
mongoid models with support of search, pagination, scopes, history,
json config.
DESC
s.rubyforge_project = 'mongosteen'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.add_dependency('inherited_resources', '>= 1.6')
s.add_dependency('mongoid-history', '>= 0.5.0')
s.add_dependency('mongoid', '>= 5.0')
s.add_dependency('mongoid_search', '>= 0.3')
s.add_dependency('kaminari', '>= 0.16')
s.add_dependency('has_scope', '>= 0.6')
# automated tests
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake'
s.add_development_dependency 'rails'
s.add_development_dependency 'coffee-rails'
s.add_development_dependency 'database_cleaner'
s.add_development_dependency 'factory_girl_rails'
s.add_development_dependency 'capybara-webkit'
s.add_development_dependency 'minitest-reporters'
s.add_development_dependency 'minitest-focus'
s.add_development_dependency 'minitest-rails-capybara'
end