enkessler/cuke_cataloger

View on GitHub
testing/gemfiles/rake11.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

# The version of Rake being tested
gem 'rake', '~> 11.0'

# Have to use this version of Cucumber in order to avoid namespace problems introduced by the `cucumber-gherkin` gem
gem 'cucumber', '2.2.0'