Class: Sistrix::Domain::Pagerank

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/sistrix/domain/pagerank.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 = {}) ⇒ Pagerank

Returns a new instance of Pagerank.



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

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

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

Instance Attribute Details

#creditsObject (readonly)

Returns the value of attribute credits.



9
10
11
# File 'lib/sistrix/domain/pagerank.rb', line 9

def credits
  @credits
end

#pageranksObject (readonly)

Returns the value of attribute pageranks.



9
10
11
# File 'lib/sistrix/domain/pagerank.rb', line 9

def pageranks
  @pageranks
end

Instance Method Details

#call(options = {}) ⇒ Object



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

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

  @credits = data.xpath('//credits').first['used'].to_i
  @pageranks = []
  data.xpath('//answer/pagerank').each do |o|
    @pageranks << Record.new(o)
  end

  self
end