Sha256: 516eaeca68263d3f817bde603dbf39b975dbfbd52cefdb3a21a7f6aef658ed1c
Contents?: true
Size: 689 Bytes
Versions: 4
Compression:
Stored size: 689 Bytes
Contents
source 'https://rubygems.org' gemspec :path => "../../" gem "gherkin", "~> 4.0" # cuke_modeler can play with pretty much any version of these but they all play differently with Ruby if RUBY_VERSION =~ /^1\.8/ gem 'cucumber', '<1.3.0' gem 'rake', '< 11.0' # Rake dropped 1.8.x support after this version end if RUBY_VERSION =~ /^1\./ gem 'tins', '< 1.7' # The 'tins' gem requires Ruby 2.x on/after this version gem 'json', '< 2.0' # The 'json' gem drops pre-Ruby 2.x support on/after this version gem 'term-ansicolor', '< 1.4' # The 'term-ansicolor' gem requires Ruby 2.x on/after this version end if RUBY_VERSION =~ /^2\.[23456789]/ gem 'test-unit' end
Version data entries
4 entries across 4 versions & 1 rubygems