Module: Macros4Cuke

Defined in:
lib/macros4cuke/constants.rb,
lib/macros4cuke/exceptions.rb,
lib/macros4cuke/macro-step.rb,
lib/macros4cuke/application.rb,
lib/macros4cuke/cli/cmd-line.rb,
lib/macros4cuke/macro-collection.rb,
lib/macros4cuke/formatter/to-null.rb,
lib/macros4cuke/templating/engine.rb,
lib/macros4cuke/formatter/to-trace.rb,
lib/macros4cuke/formatting-service.rb,
lib/macros4cuke/macro-step-support.rb,
lib/macros4cuke/templating/comment.rb,
lib/macros4cuke/templating/eo-line.rb,
lib/macros4cuke/templating/section.rb,
lib/macros4cuke/coll-walker-factory.rb,
lib/macros4cuke/formatter/to-gherkin.rb,
lib/macros4cuke/templating/placeholder.rb,
lib/macros4cuke/templating/static-text.rb,
lib/macros4cuke/templating/unary-element.rb,
lib/macros4cuke/formatter/all-notifications.rb

Overview

File: all_notifications.rb

Defined Under Namespace

Modules: CLI, Formatter, MacroStepSupport, Templating Classes: AmbiguousArgumentValue, Application, CmdLineError, CollWalkerFactory, DataTableNotFound, DirectoryNotFound, DuplicateMacroError, EmptyArgumentError, FormattingService, InternalError, InvalidCharError, MacroCollection, MacroStep, Macros4CukeError, NoFormattingEventForFormatter, SupportFileExists, UnaryElement, UnknownArgumentError, UnknownFormattingEvent, UnknownMacroError, UnreachableSubstepArgument, UselessPhraseArgument

Constant Summary collapse

Version =

The version number of the gem.

'0.5.17'
Description =

Brief description of the gem.

'Add your own macro-steps to Cucumber scenarios'
RootDir =

The root folder of Macros4Cuke.

begin
  require 'pathname' # Load Pathname class from standard library
  rootdir = Pathname(__FILE__).dirname.parent.parent.expand_path
  rootdir.to_s + '/' # Append trailing slash character to it
end