Class: RCrawler::Crawl
- Inherits:
- BasicObject
- Defined in:
- lib/rcrawler/crawl.rb
Instance Method Summary collapse
-
#initialize ⇒ Crawl
constructor
A new instance of Crawl.
- #method_missing(action, *args) ⇒ Object
Constructor Details
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(action, *args) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/rcrawler/crawl.rb', line 9 def method_missing(action, *args) if @driver.respond_to? action @driver.send(action, *args) else super end end |