wowget 0.1.10 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/wowget/spell.rb +7 -7
  2. metadata +1 -1
data/lib/wowget/spell.rb CHANGED
@@ -14,7 +14,7 @@ module Wowget
14
14
 
15
15
  def initialize(spell_id)
16
16
  begin
17
- url = open("http://www.wowhead.com/spell=#{spell_id}")
17
+ url = open("http://www.wowhead.com/spell=#{spell_id}")
18
18
  rescue
19
19
  not_found = true
20
20
  end
@@ -27,7 +27,7 @@ module Wowget
27
27
  self.name = spell_xml.css('div.text h1').inner_text.strip.to_s
28
28
 
29
29
  if spell_xml.css('table#spelldetails td span.q4 a').length == 1
30
- self.item_id = spell_xml.css('table#spelldetails td span.q4 a').attribute('href').content.scan(/\/item=([0-9]+)/)[0][0].to_i
30
+ self.item_id = spell_xml.css('table#spelldetails td span.q4 a').attribute('href').content.match(/\/item=([0-9]+)/)[1].to_i
31
31
  end
32
32
 
33
33
  # reagents
@@ -35,17 +35,17 @@ module Wowget
35
35
  self.reagents = []
36
36
  reagents = spell_xml.css("h3:contains('Reagents')+table.iconlist tr td")
37
37
  reagents.each do |r|
38
- item_id = r.css("span a").attribute('href').content.scan(/\/item=([0-9]+)/)[0][0].to_i
39
- quantity = r.content.scan(/\(([0-9]+)\)$/)[0][0].to_i
38
+ item_id = r.css("span a").attribute('href').content.match(/\/item=([0-9]+)/)[1].to_i
39
+ quantity = r.content.match(/\(([0-9]+)\)$/)[1].to_i
40
40
  self.reagents.push({:item => Wowget::Item.new(item_id), :quantity => quantity})
41
41
  end
42
42
  end
43
43
 
44
44
  # profession
45
45
  unless self.item_id.nil?
46
- p = spell_xml.xpath("//script[contains(., 'Markup')]").inner_text.scan(/\[ul\]\[li\](.+?)\[\/li\]/)[0][0].scan(/Requires (.+?) \(([0-9]+?)\)/)[0]
47
- self.profession = p[0]
48
- self.skill = p[1].to_i
46
+ matches = spell_xml.xpath("//script[contains(., 'Markup')]").inner_text.match(/\[ul\]\[li\](.+?)\[\/li\]/)[1].match(/Requires (.+?) \(([0-9]+?)\)/)
47
+ self.profession = matches[1]
48
+ self.skill = matches[2].to_i
49
49
 
50
50
  self.profession_id = case self.profession
51
51
  when "Alchemy" then 1
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: wowget
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.10
5
+ version: 0.2.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Ben Darlow