Sha256: 406b6a0a7a055f5db373637d2a1c9a0f8cbdff129a2b367fa5d26c7023a94035
Contents?: true
Size: 913 Bytes
Versions: 1
Compression:
Stored size: 913 Bytes
Contents
source 'https://rubygems.org' # Specify your gem's dependencies in cuke_modeler.gemspec gemspec # cuke_modeler can play with pretty much any version of these but they all play differently with Ruby 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 if RUBY_VERSION =~ /^1\.8/ gem 'cucumber', '~> 1.0' # Ruby 1.8.x support dropped after this version gem 'gherkin', '< 2.12.1' # Ruby 1.8.x support dropped after this version gem 'rake', '< 11.0' # Ruby 1.8.x support dropped after this version end elsif RUBY_VERSION =~ /^2\./ if RUBY_VERSION =~ /^2\.[23456789]/ gem 'test-unit' end gem 'gherkin', '~> 4.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cuke_modeler-1.2.1 | Gemfile |