Class: Sistrix::Links::Linktexts
- Inherits:
-
Object
- Object
- Sistrix::Links::Linktexts
- Includes:
- Base
- Defined in:
- lib/sistrix/links/linktexts.rb
Defined Under Namespace
Classes: Record
Instance Attribute Summary collapse
-
#credits ⇒ Object
readonly
Returns the value of attribute credits.
-
#linktexts ⇒ Object
readonly
Returns the value of attribute linktexts.
Instance Method Summary collapse
- #call(options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ Linktexts
constructor
A new instance of Linktexts.
Methods included from Base
#base_uri, #fetch, #method_name
Constructor Details
#initialize(options = {}) ⇒ Linktexts
Returns a new instance of Linktexts.
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/sistrix/links/linktexts.rb', line 11 def initialize( = {}) @options = { 'domain' => nil, 'num' => nil, 'api_key' => Sistrix.config.api_key, }.merge() if Sistrix.config.proxy RestClient.proxy = Sistrix.config.proxy end end |
Instance Attribute Details
#credits ⇒ Object (readonly)
Returns the value of attribute credits.
9 10 11 |
# File 'lib/sistrix/links/linktexts.rb', line 9 def credits @credits end |
#linktexts ⇒ Object (readonly)
Returns the value of attribute linktexts.
9 10 11 |
# File 'lib/sistrix/links/linktexts.rb', line 9 def linktexts @linktexts end |
Instance Method Details
#call(options = {}) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/sistrix/links/linktexts.rb', line 23 def call( = {}) data = fetch() @credits = data.xpath('/response/credits').first['used'].to_i @linktexts = [] data.xpath('/response/answer/linktext').each do |r| @linktexts << Record.new(r) end self end |