mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
25 lines
498 B
Text
25 lines
498 B
Text
source 'https://rubygems.org'
|
|
|
|
gem 'railties', '>= 3.2.3'
|
|
gem 'bson', '~> 1.9.2'
|
|
gem 'mongo_mapper', '>= 0.11.0'
|
|
gem 'rspec-rails', '>= 2.0'
|
|
|
|
# stick to versions that work under Ruby 1.8 for now
|
|
gem 'capybara', '< 2.1'
|
|
gem 'nokogiri', '< 1.6'
|
|
gem 'rubyzip', '< 1'
|
|
gem 'mime-types', '< 2'
|
|
|
|
if RUBY_VERSION == '1.8.7'
|
|
gem 'activesupport', '~> 3.2.18'
|
|
end
|
|
|
|
platforms :rbx do
|
|
gem 'rubysl', '~> 2.0'
|
|
gem 'racc'
|
|
gem 'rubysl-test-unit'
|
|
gem 'rubinius-developer_tools'
|
|
end
|
|
|
|
gemspec :path => '../'
|