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? -- Posted via http://www.ruby-forum.com/. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Ok ... a long search on Google found something called gem unpack Sadly, I am clueless how to use it ... what my current directory should be ... and how to point to it once I do the unpack. -- Posted via http://www.ruby-forum.com/. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
"gem install haml" On Tue, Nov 30, 2010 at 9:54 AM, Ralph Shnelvar <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org>wrote:> Ok ... a long search on Google found something called > gem unpack > > Sadly, I am clueless how to use it ... what my current directory should > be ... and how to point to it once I do the unpack. > > -- > Posted via http://www.ruby-forum.com/. > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- Thanks: Rajeev sharma +919013155133 -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hello, you can do these kind of things from console. Do you have SSH access for your hosting? What kind of hosting is it? First install the Haml gam: gem install haml Second write it to your Gemfile in your app''s root folder: gem ''haml'' Then try ''bundle install'' in terminal. If you have an error message its easier to go further. Please write it here with your OS, gem list, versions you use. Check these for Haml: https://github.com/indirect/haml-rails https://github.com/norman/haml-scaffold http://haml-lang.com/ Good luck, Zoltán On nov. 30, 04:24, Ralph Shnelvar <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Ok ... a long search on Google found something called > gem unpack > > Sadly, I am clueless how to use it ... what my current directory should > be ... and how to point to it once I do the unpack. > > -- > Posted viahttp://www.ruby-forum.com/.-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Nov 29, 9:50 pm, Ralph Shnelvar <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Matt Jones wrote in post #965193:> On Nov 29, 9:50pm, Ralph Shnelvar <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> 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 JonesThank you, Matt. I believe that rake gems:unpack will unpack everything that I need. Isn''t "unpack" a _terrible_ name for what the operation does!? -- Posted via http://www.ruby-forum.com/. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Ralph Shnelvar wrote in post #965201: [...]> > I believe that > rake gems:unpack > will unpack everything that I need. > > Isn''t "unpack" a _terrible_ name for what the operation does!?Why do you think so? It takes a gem and unpacks the files into vendor/gems. Isn''t "unpack" a _perfect_ name for what the operation does? Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org -- Posted via http://www.ruby-forum.com/. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.