Hi Sebastian, Eliminating the noise...
On Fri, 2009-06-19 at 09:21 -0700, .sebas wrote: > /usr/local/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/initializer.rb: > 269:in `require_frameworks': no such file to load -- openssl > from /home/sebas/rails/myapp/config/environment.rb:9 You read the stack trace from bottom to top. In your case... In environment.rb at line 9 you're requiring the openssl gem but do not have it installed, at least not where Rails expects it to be. 'gem list' will tell you what gems you have installed HTH, Bill --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

