Module: Macros4Cuke

Defined in:
lib/macros4cuke/constants.rb,
lib/macros4cuke/exceptions.rb,
lib/macros4cuke/macro-step.rb,
lib/macros4cuke/template-engine.rb,
lib/macros4cuke/macro-collection.rb,
lib/macros4cuke/macro-step-support.rb

Overview

Module used as a namespace

Defined Under Namespace

Modules: MacroStepSupport Classes: DataTableNotFound, DuplicateMacroError, EOLRep, EmptyArgumentError, InternalError, MacroCollection, MacroStep, Macros4CukeError, StaticRep, TemplateEngine, UnknownArgumentError, UnknownMacroError, UnreachableSubstepArgument, UselessPhraseArgument, VariableRep

Constant Summary collapse

Version =

The version number of the gem.

'0.2.13'
Description =

Brief description of the gem.

"Macros for Cucumber"
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