Sha256: 75c4f5a422981e248ee8036412f7515021bc300d563becbff3bcc27a4be692aa

Contents?: true

Size: 416 Bytes

Versions: 4

Compression:

Stored size: 416 Bytes

Contents

# Detect the platform we're running and warn if it is not supported

module Gherkin
unless defined?(Gherkin::VERSION)
  # See the comment in gherkin.gemspec if you bump the MINOR version (MAJOR.MINOR.PATCH).
  VERSION       = '2.12.0'
  JRUBY         = defined?(JRUBY_VERSION)

  if !JRUBY && !(RUBY_VERSION =~ /^(1\.8\.7|1\.9\.3|2\.0)/)
    warn("WARNING: Unsupported Ruby version - #{RUBY_VERSION}")
  end
end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gherkin-2.12.0 lib/gherkin/platform.rb
gherkin-2.12.0-x86-mingw32 lib/gherkin/platform.rb
gherkin-2.12.0-x86-mswin32 lib/gherkin/platform.rb
gherkin-2.12.0-java lib/gherkin/platform.rb