Class: Envm::Config
- Inherits:
-
Object
- Object
- Envm::Config
- Defined in:
- lib/envm/config.rb
Class Method Summary collapse
- .environment ⇒ Object
- .environment=(env) ⇒ Object
- .manifest_path ⇒ Object
- .manifest_path=(path) ⇒ Object
Class Method Details
.environment ⇒ Object
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_path ⇒ Object
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 |