-
Peter M. Goldstein authored
Switch to byebug for MRI 2.x debugging. Debugger is not supported for 2.1.2 and up, and was never fully 2.x compatible.
Peter M. Goldstein authoredSwitch to byebug for MRI 2.x debugging. Debugger is not supported for 2.1.2 and up, and was never fully 2.x compatible.
This project manages its dependencies using Bundler.
Learn more
Gemfile 436 B
source "https://rubygems.org"
group :development, :test do
gem 'rake'
gem 'mongoid', '2.6.0'
gem 'bson_ext', :platforms => :ruby
gem 'geoip'
gem 'rubyzip'
gem 'rails'
gem 'debugger', :platforms => [:mri_19]
gem 'byebug', :platforms => [:mri_20, :mri_21]
platforms :jruby do
gem 'jruby-openssl'
gem 'jgeoip'
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubysl-test-unit'
end
end
gemspec