1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00
kaminari--kaminari/gemfiles/data_mapper_12.gemfile
Yuki Nishijima a98313c08e Do not include xpath as dependency
It will have bundler install capybara 0.3.9 and we can't run the specs with such an old version of capybara.
2013-12-03 11:57:27 +09:00

25 lines
574 B
Text

source 'https://rubygems.org'
gem 'railties', '>= 3.2.3'
gem 'dm-core', '~> 1.2.0'
gem 'dm-migrations', '~> 1.2.0'
gem 'dm-aggregates', '~> 1.2.0'
gem 'dm-transactions', '~> 1.2.0'
gem 'dm-active_model', '~> 1.2.1'
gem 'dm-sqlite-adapter', '~> 1.2.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'
platforms :ruby, :rbx do
gem 'sqlite3'
end
platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter', '~> 1.2.0'
end
gemspec :path => '../'