Module: Endeco::Config

Defined in:
lib/endeco/config.rb

Constant Summary collapse

@@path =
nil
@@env =
nil
@@default_chomp =
false

Class Method Summary collapse

Class Method Details

.default_chompObject



26
27
28
# File 'lib/endeco/config.rb', line 26

def self.default_chomp
  @@default_chomp
end

.default_chomp=(new_value) ⇒ Object



22
23
24
# File 'lib/endeco/config.rb', line 22

def self.default_chomp=(new_value)
  @@default_chomp = new_value
end

.envObject



13
14
15
# File 'lib/endeco/config.rb', line 13

def self.env
  @@env
end

.env=(new_env) ⇒ Object



17
18
19
# File 'lib/endeco/config.rb', line 17

def self.env=(new_env)
  @@env = new_env
end

.pathObject



4
5
6
# File 'lib/endeco/config.rb', line 4

def self.path
  @@path
end

.path=(new_path) ⇒ Object



8
9
10
# File 'lib/endeco/config.rb', line 8

def self.path=(new_path)
  @@path = new_path
end