Class: Canfig::Config
- Inherits:
-
Object
show all
- Defined in:
- lib/canfig/config.rb
Instance Method Summary
collapse
-
#[](key) ⇒ Object
-
#[]=(key, val) ⇒ Object
-
#allowed?(opt) ⇒ Boolean
-
#changed ⇒ Object
-
#changed?(key) ⇒ Boolean
-
#clear(*keys) ⇒ Object
-
#configure(argh = {}, file = nil, &block) ⇒ Object
-
#configure_with_args(argh) ⇒ Object
-
#configure_with_block(&block) ⇒ Object
-
#configure_with_file(file) ⇒ Object
-
#disable_state_saves! ⇒ Object
-
#enable_state_saves! ⇒ Object
-
#env(key, default = nil, &block) ⇒ Object
-
#get(key, default = nil, &block) ⇒ Object
-
#method_missing(meth, *args, &block) ⇒ Object
-
#save_state!(&block) ⇒ Object
-
#save_state? ⇒ Boolean
-
#set(key, val) ⇒ Object
-
#to_h ⇒ Object
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth, *args, &block) ⇒ Object
113
114
115
116
117
118
119
120
121
122
|
# File 'lib/canfig/config.rb', line 113
def method_missing(meth, *args, &block)
if meth.to_s.match(/=\Z/)
opt = meth.to_s.gsub(/=/,'').to_sym
return set(opt, args.first) if allowed?(opt)
else
return get(meth, *args, &block) if allowed?(meth)
end
super
end
|
Instance Method Details
#[](key) ⇒ Object
64
65
66
|
# File 'lib/canfig/config.rb', line 64
def [](key)
get key
end
|
#[]=(key, val) ⇒ Object
55
56
57
|
# File 'lib/canfig/config.rb', line 55
def []=(key, val)
set key, val
end
|
#allowed?(opt) ⇒ Boolean
109
110
111
|
# File 'lib/canfig/config.rb', line 109
def allowed?(opt)
@allowed.include?(opt)
end
|
#changed ⇒ Object
72
73
74
|
# File 'lib/canfig/config.rb', line 72
def changed
Hash[@allowed.map { |key| [key, [@saved_state[key], @state[key]]] if @saved_state[key] != @state[key] }.compact]
end
|
#changed?(key) ⇒ Boolean
76
77
78
|
# File 'lib/canfig/config.rb', line 76
def changed?(key)
changed.key?(key)
end
|
#clear(*keys) ⇒ Object
49
50
51
52
53
|
# File 'lib/canfig/config.rb', line 49
def clear(*keys)
save_state! do
keys.each { |key| @state[key] = nil }
end
end
|
4
5
6
7
8
9
10
11
|
# File 'lib/canfig/config.rb', line 4
def configure(argh={}, file=nil, &block)
save_state! do
configure_with_file file unless file.nil?
configure_with_args argh
configure_with_block &block
end
self
end
|
19
20
21
22
23
|
# File 'lib/canfig/config.rb', line 19
def configure_with_args(argh)
save_state! do
argh.symbolize_keys.each { |key,val| set(key, val) }
end
end
|
25
26
27
28
29
|
# File 'lib/canfig/config.rb', line 25
def configure_with_block(&block)
save_state! do
instance_eval &block if block_given?
end
end
|
13
14
15
16
17
|
# File 'lib/canfig/config.rb', line 13
def configure_with_file(file)
save_state! do
configure_with_args(Canfig::YAML.new(file).load)
end
end
|
#disable_state_saves! ⇒ Object
101
102
103
|
# File 'lib/canfig/config.rb', line 101
def disable_state_saves!
@save_state = false
end
|
#enable_state_saves! ⇒ Object
97
98
99
|
# File 'lib/canfig/config.rb', line 97
def enable_state_saves!
@save_state = true
end
|
#env(key, default = nil, &block) ⇒ Object
39
40
41
42
43
44
45
46
47
|
# File 'lib/canfig/config.rb', line 39
def env(key, default=nil, &block)
@state[key] ||= begin
val = ENV.fetch(key.to_s.underscore.upcase, default, &block)
val = default if val.blank?
val = env(val, default, &block) if val && ENV.key?(val.to_s)
val = eval(val) if val == 'true' || val == 'false'
val
end
end
|
#get(key, default = nil, &block) ⇒ Object
59
60
61
62
|
# File 'lib/canfig/config.rb', line 59
def get(key, default=nil, &block)
raise NoMethodError, "undefined method `#{key.to_s}' for #{self.to_s}" unless allowed?(key)
@state[key] || (block_given? ? yield : default)
end
|
#save_state!(&block) ⇒ Object
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# File 'lib/canfig/config.rb', line 80
def save_state!(&block)
if save_state?
@saved_state = to_h
if block_given?
disable_state_saves!
begin
yield
ensure
enable_state_saves!
end
end
else
yield if block_given?
end
end
|
#save_state? ⇒ Boolean
105
106
107
|
# File 'lib/canfig/config.rb', line 105
def save_state?
@save_state
end
|
#set(key, val) ⇒ Object
31
32
33
34
35
36
37
|
# File 'lib/canfig/config.rb', line 31
def set(key, val)
raise NoMethodError, "undefined method `#{key.to_s}=' for #{self.to_s}" unless allowed?(key)
save_state! do
@state[key] = val
end
end
|
#to_h ⇒ Object
68
69
70
|
# File 'lib/canfig/config.rb', line 68
def to_h
Hash[@allowed.map { |key| [key, @state[key]] }]
end
|