class Envm::Config

Public Class Methods

environment() click to toggle source
# File lib/envm/config.rb, line 11
def self.environment
  @_environment || DEFAULT_ENV
end
environment=(env) click to toggle source
# File lib/envm/config.rb, line 15
def self.environment=(env)
  @_environment = env
end
manifest_path() click to toggle source
# File lib/envm/config.rb, line 3
def self.manifest_path
  @_manifest_path.to_s
end
manifest_path=(path) click to toggle source
# File lib/envm/config.rb, line 7
def self.manifest_path=(path)
  @_manifest_path = path
end