Method: Html2rss::Item#respond_to_missing?
- Defined in:
- lib/html2rss/item.rb
#respond_to_missing?(method_name, _include_private = false) ⇒ true, false
Checks if the object responds to a method dynamically based on the configuration.
:reek:BooleanParameter { enabled: false }
54 55 56 |
# File 'lib/html2rss/item.rb', line 54 def respond_to_missing?(method_name, _include_private = false) config.selector?(method_name) || super end |