Module: Cucumber
- Defined in:
- lib/cucumber.rb,
lib/cucumber/ast.rb,
lib/cucumber/unit.rb,
lib/cucumber/hooks.rb,
lib/cucumber/errors.rb,
lib/cucumber/runtime.rb,
lib/cucumber/cli/main.rb,
lib/cucumber/platform.rb,
lib/cucumber/load_path.rb,
lib/cucumber/rake/task.rb,
lib/cucumber/file_specs.rb,
lib/cucumber/step_match.rb,
lib/cucumber/cli/options.rb,
lib/cucumber/constantize.rb,
lib/cucumber/filters/quit.rb,
lib/cucumber/formatter/io.rb,
lib/cucumber/configuration.rb,
lib/cucumber/formatter/html.rb,
lib/cucumber/formatter/json.rb,
lib/cucumber/term/ansicolor.rb,
lib/cucumber/formatter/debug.rb,
lib/cucumber/formatter/junit.rb,
lib/cucumber/formatter/rerun.rb,
lib/cucumber/formatter/steps.rb,
lib/cucumber/formatter/usage.rb,
lib/cucumber/formatter/fanout.rb,
lib/cucumber/formatter/pretty.rb,
lib/cucumber/language_support.rb,
lib/cucumber/step_definitions.rb,
lib/cucumber/cli/configuration.rb,
lib/cucumber/formatter/console.rb,
lib/cucumber/formatter/gpretty.rb,
lib/cucumber/formatter/summary.rb,
lib/cucumber/formatter/unicode.rb,
lib/cucumber/rb_support/rb_dsl.rb,
lib/cucumber/running_test_case.rb,
lib/cucumber/cli/profile_loader.rb,
lib/cucumber/filters/randomizer.rb,
lib/cucumber/filters/tag_limits.rb,
lib/cucumber/formatter/duration.rb,
lib/cucumber/formatter/progress.rb,
lib/cucumber/formatter/stepdefs.rb,
lib/cucumber/multiline_argument.rb,
lib/cucumber/rb_support/rb_hook.rb,
lib/cucumber/rb_support/snippet.rb,
lib/cucumber/runtime/step_hooks.rb,
lib/cucumber/formatter/ansicolor.rb,
lib/cucumber/project_initializer.rb,
lib/cucumber/rb_support/rb_world.rb,
lib/cucumber/runtime/after_hooks.rb,
lib/cucumber/runtime/before_hooks.rb,
lib/cucumber/runtime/support_code.rb,
lib/cucumber/filters/prepare_world.rb,
lib/cucumber/formatter/interceptor.rb,
lib/cucumber/formatter/json_pretty.rb,
lib/cucumber/step_definition_light.rb,
lib/cucumber/core_ext/instance_exec.rb,
lib/cucumber/filters/activate_steps.rb,
lib/cucumber/filters/gated_receiver.rb,
lib/cucumber/rb_support/rb_language.rb,
lib/cucumber/runtime/user_interface.rb,
lib/cucumber/rb_support/rb_transform.rb,
lib/cucumber/wire_support/connection.rb,
lib/cucumber/formatter/legacy_api/ast.rb,
lib/cucumber/wire_support/wire_packet.rb,
lib/cucumber/filters/apply_after_hooks.rb,
lib/cucumber/filters/apply_around_hooks.rb,
lib/cucumber/filters/apply_before_hooks.rb,
lib/cucumber/wire_support/configuration.rb,
lib/cucumber/wire_support/wire_language.rb,
lib/cucumber/wire_support/wire_protocol.rb,
lib/cucumber/filters/tag_limits/verifier.rb,
lib/cucumber/wire_support/wire_exception.rb,
lib/cucumber/formatter/legacy_api/adapter.rb,
lib/cucumber/formatter/legacy_api/results.rb,
lib/cucumber/wire_support/request_handler.rb,
lib/cucumber/multiline_argument/data_table.rb,
lib/cucumber/multiline_argument/doc_string.rb,
lib/cucumber/rb_support/rb_step_definition.rb,
lib/cucumber/filters/apply_after_step_hooks.rb,
lib/cucumber/formatter/ignore_missing_messages.rb,
lib/cucumber/language_support/language_methods.rb,
lib/cucumber/runtime/for_programming_languages.rb,
lib/cucumber/wire_support/wire_step_definition.rb,
lib/cucumber/filters/tag_limits/test_case_index.rb,
lib/cucumber/rb_support/regexp_argument_matcher.rb,
lib/cucumber/formatter/gherkin_formatter_adapter.rb,
lib/cucumber/formatter/legacy_api/runtime_facade.rb,
lib/cucumber/wire_support/wire_protocol/requests.rb
Defined Under Namespace
Modules: Ast, Cli, Constantize, Filters, FixRuby21Bug9285, Formatter, Hooks, LanguageSupport, LoadPath, MultilineArgument, Rake, RbSupport, RunningTestCase, Term, WireSupport Classes: Ambiguous, ArityMismatchError, Configuration, FeatureFolderNotFoundException, FileException, FileNotFoundException, FileSpecs, NoStepMatch, Pending, ProjectInitializer, Runtime, SkippingStepMatch, StepDefinitionLight, StepDefinitions, StepMatch, TagExcess, Undefined, UndefinedDynamicStep, Unit
Constant Summary collapse
- VERSION =
'2.0.0'
- BINARY =
File.(File.dirname(__FILE__) + '/../../bin/cucumber')
- LIBDIR =
File.(File.dirname(__FILE__) + '/../../lib')
- JRUBY =
defined?(JRUBY_VERSION)
- WINDOWS =
RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
- OS_X =
RbConfig::CONFIG['host_os'] =~ /darwin/
- WINDOWS_MRI =
WINDOWS && !JRUBY
- RAILS =
defined?(Rails)
- RUBY_BINARY =
File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name'])
- RUBY_2_2 =
RUBY_VERSION =~ /^2\.2/
- RUBY_2_1 =
RUBY_VERSION =~ /^2\.1/
- RUBY_2_0 =
RUBY_VERSION =~ /^2\.0/
- RUBY_1_9 =
RUBY_VERSION =~ /^1\.9/
- CODEPAGE =
"cp1252"
Class Attribute Summary collapse
-
.use_full_backtrace ⇒ Object
Returns the value of attribute use_full_backtrace.
-
.wants_to_quit ⇒ Object
Returns the value of attribute wants_to_quit.
Class Method Summary collapse
Class Attribute Details
.use_full_backtrace ⇒ Object
Returns the value of attribute use_full_backtrace.
22 23 24 |
# File 'lib/cucumber/platform.rb', line 22 def use_full_backtrace @use_full_backtrace end |
.wants_to_quit ⇒ Object
Returns the value of attribute wants_to_quit.
11 12 13 |
# File 'lib/cucumber.rb', line 11 def wants_to_quit @wants_to_quit end |
Class Method Details
.deprecate(class_name, method, message) ⇒ Object
24 25 26 27 28 |
# File 'lib/cucumber.rb', line 24 def deprecate(class_name, method, ) return self # deprecation warnings will come in v2.1 called_by = caller[1] warn("Deprecated: #{class_name}##{method} #{}. Caller: #{called_by}") end |
.logger ⇒ Object
13 14 15 16 17 18 |
# File 'lib/cucumber.rb', line 13 def logger return @log if @log @log = Logger.new(STDOUT) @log.level = Logger::INFO @log end |
.logger=(logger) ⇒ Object
20 21 22 |
# File 'lib/cucumber.rb', line 20 def logger=(logger) @log = logger end |