module Lumise

typed: strict

typed: strong

typed: strict

typed: strict

typed: strong

typed: strict

typed: strong

typed: strict

typed: strict

typed: strict

typed: strict

typed: strong

typed: strict

Constants

VERSION

Public Class Methods

config() { |instance| ... } click to toggle source
# File lib/lumise.rb, line 32
def self.config(&_blk)
  yield Lumise::Configurations.instance
end
load_dotfile() click to toggle source
# File lib/lumise.rb, line 36
def self.load_dotfile
  $LOAD_PATH.unshift File.join(File.dirname(__FILE__))
  load '.lumise'
  Logger.new.success 'loaded .lumise file'
rescue LoadError
  Logger.new.error 'There was an error loading .lumise file'
end