Method: Dao::Extractor#method_missing

Defined in:
lib/dao/extractor.rb

#method_missing(method, *args, &block) ⇒ Object



42
43
44
45
# File 'lib/dao/extractor.rb', line 42

def method_missing(method, *args, &block)
  super unless @strategies.has_key?(method)
  extract(method, &@strategies[method])
end