Greetings! I have come across a strange issue when trying to install any plugins into my rails project. When I run the ''script/plugin install'' command nothing happens. I am just presented with a blank command prompt again. No install happens. I''m trying to install attachment_fu and restful_authentication on Mac OS X and am running rails 2.0.2. Does anyone have an idea of what''s going on? Thanks! -bdeverea --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Are you on a proxy or something? Or is your connection slow? I''ve installed attachment_fu with no problems. It''s a but slow but it works. Try this: first try installing it with this: ./script/plugin install http://svn.techno-weenie.net/projects/plugins/attachment_fu/ if that doesn''t work, add the repository to your source list: ./script/plugin source http://svn.techno-weenie.net/projects/plugins/attachment_fu/ now try installing it again, it should work. If nothing works at all, try it from the top again, but this time, add a '' -v '' after plugin like this: ./script/plugin -v install http://svn.techno-weenie.net/projects/plugins/attachment_fu/ that is the verbose option and might give a clue as to whats wrong. On May 30, 1:38 am, bdeverea <bdeve...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Greetings! > I have come across a strange issue when trying to install any plugins > into my rails project. When I run the ''script/plugin install'' command > nothing happens. I am just presented with a blank command prompt > again. No install happens. > > I''m trying to install attachment_fu and restful_authentication on Mac > OS X and am running rails 2.0.2. > > Does anyone have an idea of what''s going on? > > Thanks! > -bdeverea--~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks for the response, Housni. I''ve tried all of your suggestions and nothing returns any output, including add the verbose flag. As soon as I hit enter I immediately receive a blank command prompt. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Bdeverea- I''m guessing that ruby might not be in your path...try running this /usr/bin/env ruby on my win32 box, it doesn''t return immediately, but launches ruby. You can also run ''which ruby'' and that should dump a path to ruby. -Dale --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I sometimes have the same problem, so I usually directly checkout the whole code from the SVN repository and then manually run the install.rb script. This works almost every time. On 30 Mag, 14:59, Dale <daleschaaf...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Bdeverea- > I''m guessing that ruby might not be in your path...try running this > /usr/bin/env ruby > on my win32 box, it doesn''t return immediately, but launches ruby. You > can also run ''which ruby'' and that should dump a path to ruby. > -Dale--~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---