Method: Wowlog::SpellParser#parse
- Defined in:
- lib/wowlog.rb
#parse(cols, obj) ⇒ Object
164 165 166 167 168 169 170 |
# File 'lib/wowlog.rb', line 164 def parse(cols, obj) cols, obj = super(cols, obj) obj['spellId'] = cols.shift obj['spellName'] = cols.shift obj['spellSchool'] = parse_school_flag(cols.shift) return cols, obj end |