Sha256: 3a07aeca18b77f7eca133b382cdcd55b12a0bfff7de16c384238d10be799188b

Contents?: true

Size: 408 Bytes

Versions: 4

Compression:

Stored size: 408 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.1'
  JRUBY         = defined?(JRUBY_VERSION)

  if !JRUBY && !(RUBY_VERSION =~ /^(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.1 lib/gherkin/platform.rb
gherkin-2.12.1-x86-mswin32 lib/gherkin/platform.rb
gherkin-2.12.1-x86-mingw32 lib/gherkin/platform.rb
gherkin-2.12.1-java lib/gherkin/platform.rb