Sha256: 1873a226d4365df30c633bb8a15ffd039d6a17243c5359bb1378147482651b3a
Contents?: true
Size: 869 Bytes
Versions: 1
Compression:
Stored size: 869 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.3.11'.freeze # Brief description of the gem. Description = "Ruby implementation of the Earley's parsing algorithm".freeze # 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.3.11 | lib/rley/constants.rb |