Sha256: 4be6f71aa0a29cc2683a9822ec3352b7bac73f9f759cffcacfbc7b6b7521931b

Contents?: true

Size: 855 Bytes

Versions: 1

Compression:

Stored size: 855 Bytes

Contents

# File: constants.rb
# Purpose: definition of Rley constants.

module Rley # Module used as a namespace
  # The version number of the gem.
  Version = '0.0.09'

  # Brief description of the gem.
  Description = "Ruby implementation of the Earley's parsing algorithm"

  # Constant Rley::RootDir contains the absolute path of Rley's
  # start 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 start folder of Rley.
    RootDir = begin
      require 'pathname' # Load Pathname class from standard library
      startdir = Pathname(__FILE__).dirname.parent.parent.expand_path
      startdir.to_s + '/' # Append trailing slash character to it
    end
  end
end # module

# End of file

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rley-0.0.09 lib/rley/constants.rb