Sha256: d6d0bb99bf851478a8c8f0c3210d6861b9bea093eaecc62bd3eb028b08e92618
Contents?: true
Size: 867 Bytes
Versions: 1
Compression:
Stored size: 867 Bytes
Contents
# File: constants.rb # Purpose: definition of Sequitur constants. module Sequitur # Module used as a namespace # The version number of the gem. Version = '0.1.10' # Brief description of the gem. Description = 'Ruby implementation of the Sequitur algorithm' # Constant Sequitur::RootDir contains the absolute path of Sequitur'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 Sequitur. 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 |
---|---|
sequitur-0.1.10 | lib/sequitur/constants.rb |