Class: MysqlConfEntry
- Inherits:
-
Object
show all
- Defined in:
- lib/resources/mysql_conf.rb
Instance Method Summary
collapse
Constructor Details
12
13
14
15
|
# File 'lib/resources/mysql_conf.rb', line 12
def initialize(path, params)
@params = params
@path = path
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *_) ⇒ Object
17
18
19
20
21
22
|
# File 'lib/resources/mysql_conf.rb', line 17
def method_missing(name, *_)
k = name.to_s
res = @params[k]
return true if res.nil? && @params.key?(k)
@params[k]
end
|
Instance Method Details
#to_s ⇒ Object
24
25
26
|
# File 'lib/resources/mysql_conf.rb', line 24
def to_s
"MySQL Config entry [#{@path.join(' ')}]"
end
|