1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00
kaminari--kaminari/Gemfile
Leonard Chin 3d7f07585f Simplify Gemfile and allow development in Ruby 1.9
* Reference gemspec from Gemfile
 * Use ruby-debug19 if Ruby is 1.9
2011-02-19 16:45:58 +09:00

7 lines
110 B
Ruby

source 'http://rubygems.org'
if RUBY_VERSION < '1.9'
gem 'ruby-debug'
else
gem 'ruby-debug19'
end
gemspec