Class: Envm::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/envm/config.rb

Class Method Summary collapse

Class Method Details

.environmentObject



11
12
13
# File 'lib/envm/config.rb', line 11

def self.environment
  @_environment || DEFAULT_ENV
end

.environment=(env) ⇒ Object



15
16
17
# File 'lib/envm/config.rb', line 15

def self.environment=(env)
  @_environment = env
end

.manifest_pathObject



3
4
5
# File 'lib/envm/config.rb', line 3

def self.manifest_path
  @_manifest_path.to_s
end

.manifest_path=(path) ⇒ Object



7
8
9
# File 'lib/envm/config.rb', line 7

def self.manifest_path=(path)
  @_manifest_path = path
end