Sha256: 2d0e2f2398ea75de2d6a172eabe1f8199d049081db1507f466d2f94ad65b95b7

Contents?: true

Size: 742 Bytes

Versions: 5

Compression:

Stored size: 742 Bytes

Contents

source "https://rubygems.org"

gemspec

group :development do
  gem 'mocha', '~> 0.13.2'
  gem 'rake'
  gem 'shoulda-context'
  gem 'test-unit'
  gem 'timecop'
  gem 'webmock'

  # Rack 2.0+ requires Ruby >= 2.2.2 which is problematic for the test suite on
  # older Ruby versions. Check Ruby the version here and put a maximum
  # constraint on Rack if necessary.
  if RUBY_VERSION >= '2.2.2'
    gem "rack", ">= 1.5"
  else
    gem "rack", ">= 1.5", "< 2.0"
  end

  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'
      gem 'pry-byebug'
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stripe-3.3.2 Gemfile
stripe-3.3.1 Gemfile
stripe-3.3.0 Gemfile
stripe-3.2.0 Gemfile
stripe-3.1.0 Gemfile