enkessler/cuketagger

View on GitHub
testing/gemfiles/cuke_modeler1.gemfile

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'
gemspec :path => "../../"

if RUBY_VERSION =~ /^2\.[0123]/
  gem 'simplecov', '< 0.18' # Requires Ruby 2.4 at this version

  if RUBY_VERSION =~ /^2\.3/
    gem 'childprocess', '< 4.0' # Requires Ruby 2.4 at this version
  end

  if RUBY_VERSION =~ /^2\.[012]/
    gem 'childprocess', '< 2.0' # Requires Ruby 2.3 at this version
  end
end

# Cucumber 4.x uses the `cucumber-gherkin` gem, which is incompatible with
# the `gherkin` gem, upon which this version of the `cuke_modeler` gem depends
gem 'cucumber', '< 4.0'

# The version of CukeModeler being tested
gem 'cuke_modeler', '~> 1.0'