Sha256: 7ba238c66cd3173df6ceeed25151ef0bf35aaed6a74ed47dbef7ab35d283fd64
Contents?: true
Size: 935 Bytes
Versions: 10
Compression:
Stored size: 935 Bytes
Contents
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
Version data entries
10 entries across 10 versions & 1 rubygems