Method: Onsi::Includes#method_missing
- Defined in:
- lib/onsi/includes.rb
#method_missing(name, *args, &block) ⇒ Object
40 41 42 43 44 45 46 |
# File 'lib/onsi/includes.rb', line 40 def method_missing(name, *args, &block) if name =~ FETCH_METHOD_REGEXP add_fetch_method(name.to_s.gsub(/\Afetch_/, ''), *args, &block) else super end end |