views:

139

answers:

1

I am trying to use the googlecharts gem to create some quick charts. Here are the rubyforge and github sites:

http://googlecharts.rubyforge.org/
http://github.com/mattetti/googlecharts/tree/master

After installing, I keep getting an error saying "no such file to load -- googlecharts" even though when I do a "gem list", the gem is listed. I have restarted my server. Anyone know what could be going on here?

Thanks!

+2  A: 

According to the docs, you need to

require 'gchart'

but it sounds like you might be doing

require 'googlecharts'

instead.

Sarah Mei
ahh i can't believe i missed that. maybe i need to catch up on some sleep
Tony