Fosome / garb

A Ruby wrapper for the Google Analytics API
http://www.viget.com/extend/
655 stars 91 forks source link

Garb fails in Ruby 1.9.3 p392 because of REXML patch #130

Open killion opened 11 years ago

killion commented 11 years ago

Details of the patch to p392 are here...

http://www.ruby-lang.org/en/news/2013/02/22/rexml-dos-2013-02-22/

When garb .results is called now this error is the result...

uninitialized constant REXML::Text::Document

gwinn commented 11 years ago

Just add

require 'rexml/document'

at the beginning of the your source file

jibiel commented 11 years ago

@gwinn Thanks for the workaround! @vigetlabs @tpitale @reagent Any plans to fix on that?

tpitale commented 11 years ago

I haven't been contributing to Garb for some time, but the project was rewritten as Legato and is passing on 1.9.3: https://travis-ci.org/tpitale/legato

There is also a fork that may have fixed this https://github.com/Sija/garb

gwinn commented 11 years ago

@tpitale Thanks for reply