Method: FigTree::ConfigStruct#respond_to_missing?
- Defined in:
- lib/fig_tree.rb
#respond_to_missing?(method, include_all = true) ⇒ Boolean
:nodoc:
175 176 177 178 179 180 181 |
# File 'lib/fig_tree.rb', line 175 def respond_to_missing?(method, include_all=true) method = method.to_s.sub(/=$/, '') method.ends_with?('objects') || @setting_templates.key?(method.to_sym) || @settings.key?(method.to_sym) || super end |