forked from stripe/stripe-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (29 loc) · 935 Bytes
/
Gemfile
File metadata and controls
33 lines (29 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
source "https://rubygems.org"
gemspec
group :development do
gem 'mocha', '~> 0.13.2'
gem 'pry'
gem 'rake'
gem 'shoulda-context'
gem 'test-unit'
# mime-types has become only compatible with Ruby versions > 2 and we're
# still supporting 1.9 for the time being. Lock to old versions of
# mime-types and rest-client which are known to work in our Gemfile (it's
# fine to use newer versions in live environments so we don't have these in
# the gemspec).
#
# https://github.com/travis-ci/travis-ci/issues/5145
#
if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new('2.0.0')
gem 'mime-types', '2.6.2'
gem 'rest-client', '1.8.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-byebug'
end
end
end