stripe-ruby/Gemfile
Brandur dd2bae2057 Lock Byebug to just the MRI
Here we predicate the installation of Byebug on being on the MRI. This
allows us to `bundle install` on alternate platforms like JRuby.

Also performs some Gemfile management: add latest MRI and JRuby versions
and remove special case Gemfiles.
2016-03-14 08:59:13 -07:00

21 lines
420 B
Ruby

source "https://rubygems.org"
gemspec
group :development do
gem 'mocha', '~> 0.13.2'
gem 'pry'
gem 'rake'
gem 'shoulda', '~> 3.4.0'
gem 'test-unit'
platforms :mri do
# to avoid problems, bring Byebug in on just versions of Ruby under which
# it's known to work well
if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.0.0')
gem 'byebug'
gem 'pry-byebug'
end
end
end