Sha256: 257f032e2bfcbe018ef1dfa7d0878f2d48277ed4abb806b6f18ad679f1c1f609

Contents?: true

Size: 994 Bytes

Versions: 5

Compression:

Stored size: 994 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\./

  if RbConfig::CONFIG['host_os'].downcase =~ /mswin|msys|mingw32/
    gem 'ffi', '< 1.9.15' # The 'ffi' gem, for Windows, requires Ruby 2.x on/after this version
  end

  gem 'unf_ext', '< 0.0.7.3' # Requires Ruby 2.x on/after this version
  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
  gem 'rake', '< 12.3.0' # Ruby 1.9.x support dropped after this version
  gem 'cucumber', '< 3.0.0' # Ruby 1.9.x support dropped after this version

elsif RUBY_VERSION =~ /^2\./

  if RUBY_VERSION =~ /^2\.[23456789]/
    gem 'test-unit'
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cuke_modeler-2.1.0 testing/gemfiles/gherkin4.gemfile
cuke_modeler-2.0.0 testing/gemfiles/gherkin4.gemfile
cuke_modeler-1.5.1 testing/gemfiles/gherkin4.gemfile
cuke_modeler-1.5.0 testing/gemfiles/gherkin4.gemfile
cuke_modeler-1.4.0 testing/gemfiles/gherkin4.gemfile