Class: Ubi::Artifex

Inherits:
Object
  • Object
show all
Includes:
Consultor
Defined in:
lib/ubi/artifex.rb

Overview

Artifex: I work!

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(query) ⇒ Artifex

Returns a new instance of Artifex.



7
8
9
10
11
12
# File 'lib/ubi/artifex.rb', line 7

def initialize(query)
  @thema = Thema.new(query)
  start_with_search
  social_search
  other_search
end

Instance Attribute Details

#themaObject

Returns the value of attribute thema.



5
6
7
# File 'lib/ubi/artifex.rb', line 5

def thema
  @thema
end

Instance Method Details

#other_searchObject



23
24
# File 'lib/ubi/artifex.rb', line 23

def other_search
end

#social_searchObject



20
21
# File 'lib/ubi/artifex.rb', line 20

def social_search
end

#start_with_searchObject



14
15
16
17
18
# File 'lib/ubi/artifex.rb', line 14

def start_with_search
  [Google, Yahoo, Bing, DuckDuckGo].each do |s|
    @thema.try_consultor(s)
  end
end