RameshPalanivel / gdata-samples

Automatically exported from code.google.com/p/gdata-samples
0 stars 0 forks source link

jcode is only needed for ruby versions less than 1.9 #15

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
require 'jcode' 

needs to be changed to: 

require 'jcode' if RUBY_VERSION < '1.9' #require 'jcode' 

in lib/gdata/gdata.rb for rails 3 apps to work.

Original issue reported on code.google.com by samuelgi...@gmail.com on 5 Apr 2011 at 6:03