Module: Wombat::Crawler::ClassMethods
- Defined in:
- lib/wombat/crawler.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
49
50
51
|
# File 'lib/wombat/crawler.rb', line 49
def method_missing(method, *args, &block)
metadata.send method, *args, &block
end
|
Instance Method Details
#inherited(subclass) ⇒ Object
56
57
58
|
# File 'lib/wombat/crawler.rb', line 56
def inherited(subclass)
subclass.metadata = self.metadata.clone
end
|
#to_ary ⇒ Object
53
54
|
# File 'lib/wombat/crawler.rb', line 53
def to_ary
end
|