Sha256: ad3091349fb5470d85bf2f55baaa3af72c4f3c567d59254b113ed4c85c353b22
Contents?: true
Size: 774 Bytes
Versions: 20
Compression:
Stored size: 774 Bytes
Contents
source "https://rubygems.org" gemspec group :development do gem 'committee', '2.0.0.pre6' gem 'mocha', '~> 0.13.2' gem 'rake' gem 'shoulda-context' gem 'sinatra' gem 'test-unit' 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
20 entries across 20 versions & 1 rubygems