On Nov 29, 9:50 pm, Ralph Shnelvar <[email protected]> wrote: > When I attempt to launch my application on my server, the Mongrel log > says that > > Missing these required gems: > haml > > I do not control my server and the ISP has told me that he will give me > no support in terms of Ruby on Rails. > > Is there a way to install the gem in my application and/or place the gem > in some directory that will allow haml to be found?
I'm guessing that you're running on Rails 2.3, as I believe the 3.x message is different (and Bundler would handle most of this). On your development machine (not the server) you can do: rake gems:unpack GEM=haml to unpack the Haml gem into vendor/gems. You can then check the unpacked files into source control and deploy them with your application. --Matt Jones -- 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.

