Method: ApacheConf#method_missing
- Defined in:
- lib/resources/apache_conf.rb
#method_missing(name) ⇒ Object
43 44 45 46 47 48 49 |
# File 'lib/resources/apache_conf.rb', line 43 def method_missing(name) # ensure params are loaded @params || read_content # extract values @params[name.to_s] unless @params.nil? end |