lib/macros4cuke/constants.rb in macros4cuke-0.3.12 vs lib/macros4cuke/constants.rb in macros4cuke-0.3.13

- old
+ new

@@ -1,24 +1,27 @@ +# encoding: utf-8 # File: constants.rb # Purpose: definition of Macros4Cuke constants. module Macros4Cuke # Module used as a namespace - # The version number of the gem. - Version = '0.3.12' + # The version number of the gem. + Version = '0.3.13' # Brief description of the gem. Description = "Macros for Cucumber" - # Constant Macros4Cuke::RootDir contains the absolute path of Rodent's root directory. Note: it also ends with a slash character. - unless defined?(RootDir) - # The initialisation of constant RootDir is guarded in order to avoid multiple initialisation (not allowed for constants) + # Constant Macros4Cuke::RootDir contains the absolute path of Rodent's + # root directory. Note: it also ends with a slash character. + unless defined?(RootDir) + # The initialisation of constant RootDir is guarded in order + # to avoid multiple initialisation (not allowed for constants) # The root folder of Macros4Cuke. - RootDir = begin + RootDir = 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 - end + end end # module # End of file \ No newline at end of file