mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
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.
22 lines
432 B
Ruby
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
|