On Nov 4, 5:31 am, "Ivelin \"h4ckY\" Georgiev" <[email protected]> wrote: > Thank you for the answer - It Works now, > but i have other problem : > > ============ > > ERROR: While generating documentation for activesupport-3.1.1... > > MESSAGE: error generating ActiveSupport/Inflector.html: incompatible > encoding regexp match (UTF-8 regexp with IBM866 string) > (Encoding::CompatibilityError) >
Unless you're using "gem server" to look at ActiveSupport documentation you can install gems with --no-ri --no-rdoc options. You should update to latest rdoc gem so solve this encoding issue. Last but no least, try to use a console codepage that plays nicely with UTF-8, seems IBM866 is your current codepage, please change it to windows-1251: Type: chcp 1251 At the command prompt before doing anything. If you want to make a permanent change, see here: https://github.com/cucumber/cucumber/wiki/Troubleshooting http://codesnippets.joyent.com/posts/show/414 -- Luis lavena -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

