module Cucumber
Constants
- BINARY
- CODEPAGE
- LIBDIR
- RAILS
- RUBY
- RUBY_BINARY
- VERSION
Attributes
use_full_backtrace[RW]
wants_to_quit[RW]
Public Class Methods
deprecate(*args)
click to toggle source
# File lib/cucumber/deprecate.rb, line 27 def self.deprecate(*args) Deprecate::STRATEGY.call(*args) end
file_mode(m, encoding = 'UTF-8')
click to toggle source
@private
# File lib/cucumber/platform.rb, line 21 def file_mode(m, encoding = 'UTF-8') "#{m}:#{encoding}" end
logger()
click to toggle source
# File lib/cucumber.rb, line 15 def logger return @log if @log @log = Logger.new(STDOUT) @log.level = Logger::INFO @log end
logger=(logger)
click to toggle source
# File lib/cucumber.rb, line 22 def logger=(logger) @log = logger end