You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
What steps will reproduce the problem?
1.Write hello world app
2.Run in Ruby 1.9
What is the expected output? What do you see instead?
Below is the error:
~/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.r
b:36:in `require': cannot load such file -- jcode (LoadError)
What version of the product are you using? On what operating system?
Latest gem, Ruby 1.9
Please provide any additional information below.
Root cause is the include of jcode in lib/gdata.rb. This line:
require 'jcode'
should become:
require 'jcode' if RUBY_VERSION < '1.9'
Original issue reported on code.google.com by [email protected] on 12 Dec 2012 at 6:25
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Dec 2012 at 6:25The text was updated successfully, but these errors were encountered: