Sha256: 51969992522dcd443fecd963ae4c11a2379bebd06d9d4d918c50ff60c05f2693

Contents?: true

Size: 1.24 KB

Versions: 11

Compression:

Stored size: 1.24 KB

Contents

# Detect the platform we're running on so we can tweak behaviour
# in various places.
require 'rbconfig'
require 'yaml'

module Cucumber
  version       = YAML.load_file(File.dirname(__FILE__) + '/../../VERSION.yml')
  VERSION       = [version[:major], version[:minor], version[:patch], version[:build]].compact.join('.')
  LANGUAGE_FILE = File.expand_path(File.dirname(__FILE__) + '/languages.yml')
  LANGUAGES     = YAML.load_file(LANGUAGE_FILE)
  BINARY        = File.expand_path(File.dirname(__FILE__) + '/../../bin/cucumber')
  LIBDIR        = File.expand_path(File.dirname(__FILE__) + '/../../lib')
  JRUBY         = defined?(JRUBY_VERSION)
  IRONRUBY      = defined?(RUBY_ENGINE) && RUBY_ENGINE == "ironruby"
  WINDOWS       = Config::CONFIG['host_os'] =~ /mswin|mingw/
  OS_X          = Config::CONFIG['host_os'] =~ /darwin/
  WINDOWS_MRI   = WINDOWS && !JRUBY && !IRONRUBY
  RAILS         = defined?(Rails)
  RUBY_BINARY   = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
  RUBY_1_9      = RUBY_VERSION =~ /^1\.9/
  RUBY_1_8_7    = RUBY_VERSION =~ /^1\.8\.7/

  class << self
    attr_accessor :use_full_backtrace

    def file_mode(m) #:nodoc:
      RUBY_1_9 ? "#{m}:UTF-8" : m
    end
  end
  self.use_full_backtrace = false
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
cucumber-0.6.4 lib/cucumber/platform.rb
cucumber-0.6.3 lib/cucumber/platform.rb
davidtrogers-cucumber-0.6.2 lib/cucumber/platform.rb
cucumber-0.6.2 lib/cucumber/platform.rb
cucumber-0.6.1 lib/cucumber/platform.rb
cucumber-0.6.0 lib/cucumber/platform.rb
cucumber-0.5.3 lib/cucumber/platform.rb
cucumber-0.5.2 lib/cucumber/platform.rb
cucumber-0.5.1 lib/cucumber/platform.rb
cucumber-0.5.0 lib/cucumber/platform.rb
cucumber-0.4.5.rc2 lib/cucumber/platform.rb