Reputation: 6110
I am trying to find out if this error during my rails installation matters at all
Installing RDoc documentation for builder-3.0.4...
/root/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/gems/rdoc-4.0.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding : ignored
/root/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/gems/rdoc-4.0.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding ignored
/root/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/gems/rdoc-4.0.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding : ignored
/root/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/gems/rdoc-4.0.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding ignored
Upvotes: 3
Views: 414
Reputation: 96454
I think it will only affect usage of the help documentation (that is what RDoc is for) so wouldn't actually affect rails itself.
I've seen a few doc issues lately. For some of them gem install rdoc
to upgrade to the latest version of the RDoc package itself has helped.
Upvotes: 1