Cool Guy Yo
Cool Guy Yo

Reputation: 6110

Error During Rails Installation

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

Answers (2)

Michael Durrant
Michael Durrant

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

Vidya
Vidya

Reputation: 30300

Almost certainly not since this just occurred in the generation of the documentation for Builder (as opposed to something that could affect your code at runtime). But here is an explanation of the issue for your version.

Upvotes: 1

Related Questions