Class: Sistrix::Domain::Competitors::Us

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/sistrix/domain/competitors/us.rb

Defined Under Namespace

Classes: Record

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Base

#base_uri, #fetch, #method_name

Constructor Details

#initialize(options = {}) ⇒ Us

Returns a new instance of Us.



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/sistrix/domain/competitors/us.rb', line 12

def initialize(options = {})
  @options = {
    'num'    => 5,
    'domain' => nil,
    'api_key' => Sistrix.config.api_key,
  }.merge(options)

  if Sistrix.config.proxy
    RestClient.proxy = Sistrix.config.proxy
  end
end

Instance Attribute Details

#competitorsObject (readonly)

Returns the value of attribute competitors.



10
11
12
# File 'lib/sistrix/domain/competitors/us.rb', line 10

def competitors
  @competitors
end

#creditsObject (readonly)

Returns the value of attribute credits.



10
11
12
# File 'lib/sistrix/domain/competitors/us.rb', line 10

def credits
  @credits
end

Instance Method Details

#call(options = {}) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/sistrix/domain/competitors/us.rb', line 24

def call(options = {})
  data = fetch(options)

  @credits = data.xpath('//credits').first['used'].to_i
  @competitors = []
  data.xpath('//answer/result').each do |r|
    @competitors << Record.new(r)
  end

  self
end