Class: Ubi::Artifex
Overview
Artifex: I work!
Instance Attribute Summary collapse
-
#thema ⇒ Object
Returns the value of attribute thema.
Instance Method Summary collapse
- #do_the_twist ⇒ Object
- #fetch_pages ⇒ Object
-
#initialize(query) ⇒ Artifex
constructor
A new instance of Artifex.
- #other_search ⇒ Object
- #social_search ⇒ Object
- #start_with_search ⇒ Object
Constructor Details
Instance Attribute Details
#thema ⇒ Object
Returns the value of attribute thema.
5 6 7 |
# File 'lib/ubi/artifex.rb', line 5 def thema @thema end |
Instance Method Details
#do_the_twist ⇒ Object
31 32 33 34 35 |
# File 'lib/ubi/artifex.rb', line 31 def do_the_twist thema.araneas.each { |a| thema.try_datum(a) } # pp thema.spec # binding.pry if binding.respond_to?(:pry) end |
#fetch_pages ⇒ Object
27 28 29 |
# File 'lib/ubi/artifex.rb', line 27 def fetch_pages thema.araneas.each(&:work) end |
#other_search ⇒ Object
24 25 |
# File 'lib/ubi/artifex.rb', line 24 def other_search end |
#social_search ⇒ Object
21 22 |
# File 'lib/ubi/artifex.rb', line 21 def end |
#start_with_search ⇒ Object
15 16 17 18 19 |
# File 'lib/ubi/artifex.rb', line 15 def start_with_search [Google, Yahoo, Bing, DuckDuckGo].each do |s| @thema.try_consultor(s) end end |