stripe-ruby/Gemfile
Brandur ddaf36e00c Remove support for Ruby 1.9
This has been discussed, but we'll finally be doing it for the next
major version so that we can introduce a few features that depend on
gems that don't support 1.9.
2017-02-14 12:06:10 -08:00

22 lines
432 B
Ruby

source "https://rubygems.org"
gemspec
group :development do
gem 'mocha', '~> 0.13.2'
gem 'pry'
gem 'rake'
gem 'shoulda-context'
gem 'test-unit'
gem 'webmock'
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