Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-21 20:05 UTC
HowTo install plugins from github?
I am trying to install the in_place_editing plugin from github. I have looked at http://railswheels.com/in-place-editing and it suggests the following command: ./script/plugin install git://github.com/rails/in_place_editing I have tried this and nothing happens e.g. ''./script/plugin list'' does not return anything. Are there some prerequisites that I am overlooking? Do I have any other options? It concerns me that my ./script/plugin commands do not seem to be working - a result of an upgrade problem perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) Thanks. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-21 20:33 UTC
Re: HowTo install plugins from github?
I have tried issuing the following command: ./script/plugin --verbose install http://github.com/rails/in_place_editing.git and I get: Plugins will be installed using http git init git pull --depth 1 http://github.com/rails/in_place_editing.git But again, I do not see any plugin under my vendor/plugins directory. On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> I am trying to install the in_place_editing plugin from github. > > I have looked athttp://railswheels.com/in-place-editingand it > suggests the following command: > > ./script/plugin install git://github.com/rails/in_place_editing > > I have tried this and nothing happens e.g. ''./script/plugin list'' does > not return anything. > > Are there some prerequisites that I am overlooking? > > Do I have any other options? It concerns me that my ./script/plugin > commands do not seem to be working - a result of an upgrade problem > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) > > Thanks.--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-21 20:34 UTC
Re: HowTo install plugins from github?
I should add that I am developing on an Ubuntu system and using svn to manage my code. On 21 Jan, 20:33, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> I have tried issuing the following command: > > ./script/plugin --verbose installhttp://github.com/rails/in_place_editing.git > > and I get: > > Plugins will be installed using http > git init > git pull --depth 1http://github.com/rails/in_place_editing.git > > But again, I do not see any plugin under my vendor/plugins directory. > > On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > I am trying to install the in_place_editing plugin from github. > > > I have looked athttp://railswheels.com/in-place-editingandit > > suggests the following command: > > > ./script/plugin install git://github.com/rails/in_place_editing > > > I have tried this and nothing happens e.g. ''./script/plugin list'' does > > not return anything. > > > Are there some prerequisites that I am overlooking? > > > Do I have any other options? It concerns me that my ./script/plugin > > commands do not seem to be working - a result of an upgrade problem > > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) > > > Thanks.--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
The command on the site is slightly wrong. You''re missing the ".git" at the end. You need to use the full "git clone URL" when installing a plugin. You''ll see this link on the project page: http://github.com/rails/in_place_editing from which you need to run the command: script/plugin install git://github.com/rails/in_place_editing.git Jason On Wed, Jan 21, 2009 at 3:34 PM, Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org <Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > I should add that I am developing on an Ubuntu system and using svn to > manage my code. > > > On 21 Jan, 20:33, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> I have tried issuing the following command: >> >> ./script/plugin --verbose installhttp://github.com/rails/in_place_editing.git >> >> and I get: >> >> Plugins will be installed using http >> git init >> git pull --depth 1http://github.com/rails/in_place_editing.git >> >> But again, I do not see any plugin under my vendor/plugins directory. >> >> On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> > I am trying to install the in_place_editing plugin from github. >> >> > I have looked athttp://railswheels.com/in-place-editingandit >> > suggests the following command: >> >> > ./script/plugin install git://github.com/rails/in_place_editing >> >> > I have tried this and nothing happens e.g. ''./script/plugin list'' does >> > not return anything. >> >> > Are there some prerequisites that I am overlooking? >> >> > Do I have any other options? It concerns me that my ./script/plugin >> > commands do not seem to be working - a result of an upgrade problem >> > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) >> >> > Thanks. > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-21 20:58 UTC
Re: HowTo install plugins from github?
Thanks for the response. So I tried: ./script/plugin --verbose install git://github.com/rails/in_place_editing.git and the following was output to my console: Plugins will be installed using http git init git pull --depth 1 git://github.com/rails/in_place_editing.git But I still do not see anything in my plugins directory. What is the ''git'' command in the above? Do I need to install this first? On 21 Jan, 20:43, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> The command on the site is slightly wrong. You''re missing the ".git" > at the end. You need to use the full "git clone URL" when installing a > plugin. You''ll see this link on the project page: > > http://github.com/rails/in_place_editing > > from which you need to run the command: > > script/plugin install git://github.com/rails/in_place_editing.git > > Jason > > On Wed, Jan 21, 2009 at 3:34 PM, Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > > I should add that I am developing on an Ubuntu system and using svn to > > manage my code. > > > On 21 Jan, 20:33, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> I have tried issuing the following command: > > >> ./script/plugin --verbose installhttp://github.com/rails/in_place_editing.git > > >> and I get: > > >> Plugins will be installed using http > >> git init > >> git pull --depth 1http://github.com/rails/in_place_editing.git > > >> But again, I do not see any plugin under my vendor/plugins directory. > > >> On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> > I am trying to install the in_place_editing plugin from github. > > >> > I have looked athttp://railswheels.com/in-place-editingandit > >> > suggests the following command: > > >> > ./script/plugin install git://github.com/rails/in_place_editing > > >> > I have tried this and nothing happens e.g. ''./script/plugin list'' does > >> > not return anything. > > >> > Are there some prerequisites that I am overlooking? > > >> > Do I have any other options? It concerns me that my ./script/plugin > >> > commands do not seem to be working - a result of an upgrade problem > >> > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) > > >> > Thanks.--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Hmm, that''s odd. It ran perfectly fine for me. What happens when you do a straight clone of the project ( git clone git://github.com/rails/in_place_editing.git ) ? Here''s my command and output: roelofs@trillian (svn) [master]~/proj $ ./script/plugin --verbose install git://github.com/rails/in_place_editing.git Plugins will be installed using http git init Initialized empty Git repository in /home/roelofs/proj/vendor/plugins/in_place_editing/.git/ git pull --depth 1 git://github.com/rails/in_place_editing.git Unpacking objects: 100% (18/18), done. remote: Counting objects: 18, done. remote: Compressing objects: 100% (14/14), done. remote: Total 18 (delta 4), reused 17 (delta 4) From git://github.com/rails/in_place_editing * branch HEAD -> FETCH_HEAD removing: .git Jason On Wed, Jan 21, 2009 at 3:58 PM, Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org <Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > Thanks for the response. So I tried: > > ./script/plugin --verbose install git://github.com/rails/in_place_editing.git > > and the following was output to my console: > > Plugins will be installed using http > git init > git pull --depth 1 git://github.com/rails/in_place_editing.git > > But I still do not see anything in my plugins directory. > > What is the ''git'' command in the above? Do I need to install this > first? > > > > On 21 Jan, 20:43, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> The command on the site is slightly wrong. You''re missing the ".git" >> at the end. You need to use the full "git clone URL" when installing a >> plugin. You''ll see this link on the project page: >> >> http://github.com/rails/in_place_editing >> >> from which you need to run the command: >> >> script/plugin install git://github.com/rails/in_place_editing.git >> >> Jason >> >> On Wed, Jan 21, 2009 at 3:34 PM, Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> > I should add that I am developing on an Ubuntu system and using svn to >> > manage my code. >> >> > On 21 Jan, 20:33, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> I have tried issuing the following command: >> >> >> ./script/plugin --verbose installhttp://github.com/rails/in_place_editing.git >> >> >> and I get: >> >> >> Plugins will be installed using http >> >> git init >> >> git pull --depth 1http://github.com/rails/in_place_editing.git >> >> >> But again, I do not see any plugin under my vendor/plugins directory. >> >> >> On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> > I am trying to install the in_place_editing plugin from github. >> >> >> > I have looked athttp://railswheels.com/in-place-editingandit >> >> > suggests the following command: >> >> >> > ./script/plugin install git://github.com/rails/in_place_editing >> >> >> > I have tried this and nothing happens e.g. ''./script/plugin list'' does >> >> > not return anything. >> >> >> > Are there some prerequisites that I am overlooking? >> >> >> > Do I have any other options? It concerns me that my ./script/plugin >> >> > commands do not seem to be working - a result of an upgrade problem >> >> > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) >> >> >> > Thanks. > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-21 22:08 UTC
Re: HowTo install plugins from github?
Two things are troubling me: 1) I haven''t installed any git client software on my Ubuntu machine. That said, I read that script/plugin handles the fetching of code from the git repository and therefore I assume it is not necessary to install any git client software. 2) I have upgraded from Rails 1.2.6 to 2.2.2 (and made the necessary changes to my application) but I am concerned that the script/plugin code is the same that was generated when I first generated my application using Rails 1.2.6, and thus may not support git (as I assume in (1)). On 21 Jan, 21:35, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hmm, that''s odd. It ran perfectly fine for me. > > What happens when you do a straight clone of the project ( git clone > git://github.com/rails/in_place_editing.git ) ? > > Here''s my command and output: > > roelofs@trillian (svn) [master]~/proj $ ./script/plugin --verbose > install git://github.com/rails/in_place_editing.git > Plugins will be installed using http > git init > Initialized empty Git repository in > /home/roelofs/proj/vendor/plugins/in_place_editing/.git/ > git pull --depth 1 git://github.com/rails/in_place_editing.git > Unpacking objects: 100% (18/18), done. > remote: Counting objects: 18, done. > remote: Compressing objects: 100% (14/14), done. > remote: Total 18 (delta 4), reused 17 (delta 4) > From git://github.com/rails/in_place_editing > * branch HEAD -> FETCH_HEAD > removing: .git > > Jason > > On Wed, Jan 21, 2009 at 3:58 PM, Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > > Thanks for the response. So I tried: > > > ./script/plugin --verbose install git://github.com/rails/in_place_editing.git > > > and the following was output to my console: > > > Plugins will be installed using http > > git init > > git pull --depth 1 git://github.com/rails/in_place_editing.git > > > But I still do not see anything in my plugins directory. > > > What is the ''git'' command in the above? Do I need to install this > > first? > > > On 21 Jan, 20:43, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> The command on the site is slightly wrong. You''re missing the ".git" > >> at the end. You need to use the full "git clone URL" when installing a > >> plugin. You''ll see this link on the project page: > > >>http://github.com/rails/in_place_editing > > >> from which you need to run the command: > > >> script/plugin install git://github.com/rails/in_place_editing.git > > >> Jason > > >> On Wed, Jan 21, 2009 at 3:34 PM, Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org > > >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > >> > I should add that I am developing on an Ubuntu system and using svn to > >> > manage my code. > > >> > On 21 Jan, 20:33, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > >> > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> >> I have tried issuing the following command: > > >> >> ./script/plugin --verbose installhttp://github.com/rails/in_place_editing.git > > >> >> and I get: > > >> >> Plugins will be installed using http > >> >> git init > >> >> git pull --depth 1http://github.com/rails/in_place_editing.git > > >> >> But again, I do not see any plugin under my vendor/plugins directory. > > >> >> On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> >> > I am trying to install the in_place_editing plugin from github. > > >> >> > I have looked athttp://railswheels.com/in-place-editingandit > >> >> > suggests the following command: > > >> >> > ./script/plugin install git://github.com/rails/in_place_editing > > >> >> > I have tried this and nothing happens e.g. ''./script/plugin list'' does > >> >> > not return anything. > > >> >> > Are there some prerequisites that I am overlooking? > > >> >> > Do I have any other options? It concerns me that my ./script/plugin > >> >> > commands do not seem to be working - a result of an upgrade problem > >> >> > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) > > >> >> > Thanks.--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Oh... On Wed, Jan 21, 2009 at 5:08 PM, Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org <Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> > Two things are troubling me: > > 1) I haven''t installed any git client software on my Ubuntu machine. > That said, I read that script/plugin handles the fetching of code from > the git repository and therefore I assume it is not necessary to > install any git client software.Um, you do need git installed. Jason> > 2) I have upgraded from Rails 1.2.6 to 2.2.2 (and made the necessary > changes to my application) but I am concerned that the script/plugin > code is the same that was generated when I first generated my > application using Rails 1.2.6, and thus may not support git (as I > assume in (1)). > > > > On 21 Jan, 21:35, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> Hmm, that''s odd. It ran perfectly fine for me. >> >> What happens when you do a straight clone of the project ( git clone >> git://github.com/rails/in_place_editing.git ) ? >> >> Here''s my command and output: >> >> roelofs@trillian (svn) [master]~/proj $ ./script/plugin --verbose >> install git://github.com/rails/in_place_editing.git >> Plugins will be installed using http >> git init >> Initialized empty Git repository in >> /home/roelofs/proj/vendor/plugins/in_place_editing/.git/ >> git pull --depth 1 git://github.com/rails/in_place_editing.git >> Unpacking objects: 100% (18/18), done. >> remote: Counting objects: 18, done. >> remote: Compressing objects: 100% (14/14), done. >> remote: Total 18 (delta 4), reused 17 (delta 4) >> From git://github.com/rails/in_place_editing >> * branch HEAD -> FETCH_HEAD >> removing: .git >> >> Jason >> >> On Wed, Jan 21, 2009 at 3:58 PM, Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> > Thanks for the response. So I tried: >> >> > ./script/plugin --verbose install git://github.com/rails/in_place_editing.git >> >> > and the following was output to my console: >> >> > Plugins will be installed using http >> > git init >> > git pull --depth 1 git://github.com/rails/in_place_editing.git >> >> > But I still do not see anything in my plugins directory. >> >> > What is the ''git'' command in the above? Do I need to install this >> > first? >> >> > On 21 Jan, 20:43, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> The command on the site is slightly wrong. You''re missing the ".git" >> >> at the end. You need to use the full "git clone URL" when installing a >> >> plugin. You''ll see this link on the project page: >> >> >>http://github.com/rails/in_place_editing >> >> >> from which you need to run the command: >> >> >> script/plugin install git://github.com/rails/in_place_editing.git >> >> >> Jason >> >> >> On Wed, Jan 21, 2009 at 3:34 PM, Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org >> >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> >> > I should add that I am developing on an Ubuntu system and using svn to >> >> > manage my code. >> >> >> > On 21 Jan, 20:33, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> >> > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> >> I have tried issuing the following command: >> >> >> >> ./script/plugin --verbose installhttp://github.com/rails/in_place_editing.git >> >> >> >> and I get: >> >> >> >> Plugins will be installed using http >> >> >> git init >> >> >> git pull --depth 1http://github.com/rails/in_place_editing.git >> >> >> >> But again, I do not see any plugin under my vendor/plugins directory. >> >> >> >> On 21 Jan, 20:05, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> >> >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> >> > I am trying to install the in_place_editing plugin from github. >> >> >> >> > I have looked athttp://railswheels.com/in-place-editingandit >> >> >> > suggests the following command: >> >> >> >> > ./script/plugin install git://github.com/rails/in_place_editing >> >> >> >> > I have tried this and nothing happens e.g. ''./script/plugin list'' does >> >> >> > not return anything. >> >> >> >> > Are there some prerequisites that I am overlooking? >> >> >> >> > Do I have any other options? It concerns me that my ./script/plugin >> >> >> > commands do not seem to be working - a result of an upgrade problem >> >> >> > perhaps ? ( I have recently upgraded my application to Rails 2.2.2 ) >> >> >> >> > Thanks. > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
> Um, you do need git installed. > > JasonHi, like I said in another similar thread, you can simply download the tarball or zipfile and extract the archive in your plugins folder, and the plugin is installed. Installing git is however preferable and easier for future updates. -- Learn IT with videos in french language: http://www.digiprof.fr -- 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-/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 -~----------~----~----~----~------~----~------~--~---
On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > >> Um, you do need git installed. >> >> Jason > > Hi, like I said in another similar thread, you can simply download the > tarball or zipfile and extract the archive in your plugins folder, and > the plugin is installed. Installing git is however preferable and easier > for future updates. > >This isn''t true 100% of the time. Quite a few plugins rely on the installation phase of script/plugin install to push config files / js / css / etc files up into the main Rails workspace. Just untarring into your vendor/plugins does not run this installation process. Thus, use script/plugin install. Make sure you have the binaries installed for whatever SCM you use (SVN / git / etc). Jason --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
How do I install the git on a mac ? I installed the gitgem as shown in the git guide, but I still failed in installing plugins from git ____________________________________________ Hans Marmolin Prof Cognitive Ergonomics St: Larsgatan 50, 58224 Linköping, Sweden Phone: +46708371202 22 jan 2009 kl. 14.48 skrev Jason Roelofs:> > On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez > <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: >> >> >>> Um, you do need git installed. >>> >>> Jason >> >> Hi, like I said in another similar thread, you can simply download >> the >> tarball or zipfile and extract the archive in your plugins folder, >> and >> the plugin is installed. Installing git is however preferable and >> easier >> for future updates. >> >> > > This isn''t true 100% of the time. Quite a few plugins rely on the > installation phase of script/plugin install to push config files / js > / css / etc files up into the main Rails workspace. Just untarring > into your vendor/plugins does not run this installation process. > > Thus, use script/plugin install. Make sure you have the binaries > installed for whatever SCM you use (SVN / git / etc). > > Jason > > >--~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-22 15:41 UTC
Re: HowTo install plugins from github?
I use a remote subversion repository to manage my application code, and access it through my IDE or the command line using svn client programs. I assume though that I need to install git client programs (git-core?) in order for script/plugin to be able to retrieve the in_place_editing plugin from the Rails github repository. Correct? Having retrieved it, I would then add it to my svn repository as I would any file that I create. Thanks... On 22 Jan, 13:48, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez > > <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > >> Um, you do need git installed. > > >> Jason > > > Hi, like I said in another similar thread, you can simply download the > > tarball or zipfile and extract the archive in your plugins folder, and > > the plugin is installed. Installing git is however preferable and easier > > for future updates. > > This isn''t true 100% of the time. Quite a few plugins rely on the > installation phase of script/plugin install to push config files / js > / css / etc files up into the main Rails workspace. Just untarring > into your vendor/plugins does not run this installation process. > > Thus, use script/plugin install. Make sure you have the binaries > installed for whatever SCM you use (SVN / git / etc). > > Jason--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Check http://git-scm.com and see if you can find out more there. On Jan 22, 8:03 am, Hans Marmolin <hans.marmo...-6LjvI5LOC4niH4Lt12DN6A@public.gmane.org> wrote:> How do I install the git on a mac ? > I installed the gitgem as shown in the git guide, but I still failed > in installing plugins from git > ____________________________________________ > Hans Marmolin > Prof Cognitive Ergonomics > St: Larsgatan 50, 58224 Linköping, Sweden > Phone: +46708371202 > > 22 jan 2009 kl. 14.48 skrev Jason Roelofs: > > > > > On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez > > <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > >>> Um, you do need git installed. > > >>> Jason > > >> Hi, like I said in another similar thread, you can simply download > >> the > >> tarball or zipfile and extract the archive in your plugins folder, > >> and > >> the plugin is installed. Installing git is however preferable and > >> easier > >> for future updates. > > > This isn''t true 100% of the time. Quite a few plugins rely on the > > installation phase of script/plugin install to push config files / js > > / css / etc files up into the main Rails workspace. Just untarring > > into your vendor/plugins does not run this installation process. > > > Thus, use script/plugin install. Make sure you have the binaries > > installed for whatever SCM you use (SVN / git / etc). > > > Jason--~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
My 2 cents: the bad news is you need to understand what git does, not just use it. The good news is: here are some resources I wrote about that while learning git for rails: http://harryseldon.thinkosphere.com/2009/01/14/git-and-rails-a-detailed-tutorial-including-plugins-submodules-development-and-production http://harryseldon.thinkosphere.com/2008/11/08/grand-gardening-with-git -- 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-/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 -~----------~----~----~----~------~----~------~--~---
Lee.Longmore-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org
2009-Jan-23 06:34 UTC
Re: HowTo install plugins from github?
Success! I have successfully installed auto_complete and in_place_editing from github. It was first necessary for me to install the git-core package on my Ubuntu Hardy Heron machine (sudo apt-get install git-core). Thanks... On 22 Jan, 15:41, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> I use a remote subversion repository to manage my application code, > and access it through my IDE or the command line using svn client > programs. > > I assume though that I need to install git client programs (git-core?) > in order for script/plugin to be able to retrieve thein_place_editing > plugin from the Rails github repository. Correct? > > Having retrieved it, I would then add it to my svn repository as I > would any file that I create. > > Thanks... > > On 22 Jan, 13:48, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez > > > <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > > >> Um, you do need git installed. > > > >> Jason > > > > Hi, like I said in another similar thread, you can simply download the > > > tarball or zipfile and extract the archive in your plugins folder, and > > > the plugin is installed. Installing git is however preferable and easier > > > for future updates. > > > This isn''t true 100% of the time. Quite a few plugins rely on the > > installation phase of script/plugin install to push config files / js > > / css / etc files up into the main Rails workspace. Just untarring > > into your vendor/plugins does not run this installation process. > > > Thus, use script/plugin install. Make sure you have the binaries > > installed for whatever SCM you use (SVN / git / etc). > > > Jason--~--~---------~--~----~------------~-------~--~----~ 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 am having the same issue but on mac (leopard and rails 2.2), I installed git but still I have no success installing plugin from the git site. Any suggestions? Thanks.. On Jan 23, 1:34 am, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> Success! > > I have successfully installed auto_complete and in_place_editing fromgithub. > > It was first necessary for me toinstallthe git-core package on my > Ubuntu Hardy Heron machine (sudo apt-getinstallgit-core). > > Thanks... > > On 22 Jan, 15:41, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > I use a remote subversion repository to manage my application code, > > and access it through my IDE or the command line using svn client > > programs. > > > I assume though that I need toinstallgit client programs (git-core?) > > in order for script/plugin to be able to retrieve thein_place_editing > > plugin from the Railsgithubrepository. Correct? > > > Having retrieved it, I would then add it to my svn repository as I > > would any file that I create. > > > Thanks... > > > On 22 Jan, 13:48, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez > > > > <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > > > >> Um, you do need git installed. > > > > >> Jason > > > > > Hi, like I said in another similar thread, you can simply download the > > > > tarball or zipfile and extract the archive in yourpluginsfolder, and > > > > the plugin is installed. Installing git is however preferable and easier > > > > for future updates. > > > > This isn''t true 100% of the time. Quite a fewpluginsrely on the > > > installation phase of script/plugininstallto push config files / js > > > / css / etc files up into the main Rails workspace. Just untarring > > > into your vendor/pluginsdoes not run this installation process. > > > > Thus, use script/plugininstall. Make sure you have the binaries > > > installed for whatever SCM you use (SVN / git / etc). > > > > Jason--~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
My experience was even worse. That worse that I started to dislike git a lot. RoR is about keeping things simple and clear: now we have and http, and svn, AND git for installing plugins, and some of it works sometimes, but not always, and you need to install something else first, etc. NOT a good evolution, if this goes on. The best way to make a programming language less populair is make it cluttered, complicated, illogical and unstable. Git is starting to do all that for me. Hope it changes for the better. :-( On 4 feb, 06:19, ansh78 <ans...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I am having the same issue but on mac (leopard and rails 2.2), Iinstalledgit but still I have no success installing plugin from the > git site. Any suggestions? > > Thanks.. > > On Jan 23, 1:34 am, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > Success! > > > I have successfullyinstalledauto_complete and in_place_editing fromgithub. > > > It was first necessary for me toinstallthe git-core package on my > > Ubuntu Hardy Heron machine (sudo apt-getinstallgit-core). > > > Thanks... > > > On 22 Jan, 15:41, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" > > > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > > I use a remote subversion repository to manage my application code, > > > and access it through my IDE or the command line using svn client > > > programs. > > > > I assume though that I need toinstallgit client programs (git-core?) > > > in order for script/plugin to be able to retrieve thein_place_editing > > > plugin from the Railsgithubrepository. Correct? > > > > Having retrieved it, I would then add it to my svn repository as I > > > would any file that I create. > > > > Thanks... > > > > On 22 Jan, 13:48, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez > > > > > <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > > > > >> Um, you do need gitinstalled. > > > > > >> Jason > > > > > > Hi, like I said in another similar thread, you can simply download the > > > > > tarball or zipfile and extract the archive in yourpluginsfolder, and > > > > > the plugin isinstalled. Installing git is however preferable and easier > > > > > for future updates. > > > > > This isn''t true 100% of the time. Quite a fewpluginsrely on the > > > > installation phase of script/plugininstallto push config files / js > > > > / css / etc files up into the main Rails workspace. Just untarring > > > > into your vendor/pluginsdoes not run this installation process. > > > > > Thus, use script/plugininstall. Make sure you have the binaries > > > >installedfor whatever SCM you use (SVN / git / etc). > > > > > Jason--~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
And the problem is? I mean, script/plugin install git... works exactly as expected, if you have git installed and it works like it should. Please state what problem you''re having instead of just blatantly bashing something that works for 99% of the people who try to use it. Jason On Wed, Feb 4, 2009 at 3:15 PM, Rudy <rsoetewey-CNXmb7IdZIWZIoH1IeqzKA@public.gmane.org> wrote:> > My experience was even worse. That worse that I started to dislike git > a lot. RoR is about keeping things simple and clear: now we have and > http, and svn, AND git for installing plugins, and some of it works > sometimes, but not always, and you need to install something else > first, etc. NOT a good evolution, if this goes on. The best way to > make a programming language less populair is make it cluttered, > complicated, illogical and unstable. Git is starting to do all that > for me. Hope it changes for the better. :-( > > On 4 feb, 06:19, ansh78 <ans...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> I am having the same issue but on mac (leopard and rails 2.2), Iinstalledgit but still I have no success installing plugin from the >> git site. Any suggestions? >> >> Thanks.. >> >> On Jan 23, 1:34 am, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> >> <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> > Success! >> >> > I have successfullyinstalledauto_complete and in_place_editing fromgithub. >> >> > It was first necessary for me toinstallthe git-core package on my >> > Ubuntu Hardy Heron machine (sudo apt-getinstallgit-core). >> >> > Thanks... >> >> > On 22 Jan, 15:41, "Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org" >> >> > <Lee.Longm...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> > > I use a remote subversion repository to manage my application code, >> > > and access it through my IDE or the command line using svn client >> > > programs. >> >> > > I assume though that I need toinstallgit client programs (git-core?) >> > > in order for script/plugin to be able to retrieve thein_place_editing >> > > plugin from the Railsgithubrepository. Correct? >> >> > > Having retrieved it, I would then add it to my svn repository as I >> > > would any file that I create. >> >> > > Thanks... >> >> > > On 22 Jan, 13:48, Jason Roelofs <jameskil...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> > > > On Thu, Jan 22, 2009 at 5:12 AM, Fernando Perez >> >> > > > <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: >> >> > > > >> Um, you do need gitinstalled. >> >> > > > >> Jason >> >> > > > > Hi, like I said in another similar thread, you can simply download the >> > > > > tarball or zipfile and extract the archive in yourpluginsfolder, and >> > > > > the plugin isinstalled. Installing git is however preferable and easier >> > > > > for future updates. >> >> > > > This isn''t true 100% of the time. Quite a fewpluginsrely on the >> > > > installation phase of script/plugininstallto push config files / js >> > > > / css / etc files up into the main Rails workspace. Just untarring >> > > > into your vendor/pluginsdoes not run this installation process. >> >> > > > Thus, use script/plugininstall. Make sure you have the binaries >> > > >installedfor whatever SCM you use (SVN / git / etc). >> >> > > > Jason > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Jason Roelofs wrote:> > > And the problem is? I mean, script/plugin install git... works exactly > as expected, if you have git installed and it works like it should. > > Please state what problem you''re having instead of just blatantly > bashing something that works for 99% of the people who try to use it. > > Jason > > >Hi I am a noob on RoR and I will agree that this git dependency came in from the left field for me too!:confused: All the documentation I saw about plugins blithely says use the following command to install plugin - rubby script/plugin install acts_as_tree and it works.... But when I went to try to install acts_as_authenticated and used - ruby script/plugin install git://github.com/gundestrup/acts_as_authenticated.git ruby script/generate authenticated user account I got the error authenticated not found! working back I found that nothing had been installed in the plug-ins directory. AND there was no error message during the install either. After a lot of hunting on forums, I found this post which says that I need to install this git client! That is not consistent. :thinking:A gem (git-gem?)dependency I could understand. but a whole new client to keep track off? Rails doesnt need you to install svn or Perforce or anything right? You should need these only if you are going to make changes to the plug-in.... So thanks for posting this as now I am off to install git but want to share my thoughts. Quoted from: http://www.nabble.com/HowTo-install-plugins-from-github--tp21591148p21841502.html -- View this message in context: http://www.nabble.com/HowTo-install-plugins-from-github--tp21591148p21939705.html Sent from the RubyOnRails Users mailing list archive at Nabble.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-/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 -~----------~----~----~----~------~----~------~--~---
On Feb 10, 10:21 pm, Master Chief 2007 <emailssa...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> Jason Roelofs wrote: > > After a lot of hunting on forums, I found this post which says that I need > to install this git client! That is not consistent. > > :thinking:A gem (git-gem?)dependency I could understand. but a whole new > client to keep track off? Rails doesnt need you to install svn or Perforce > or anything right? You should need these only if you are going to make > changes to the plug-in....You don''t need svn to use rails but then you wouldn''t be able to install plugins hosted via svn. To say rails requires you to install git is back to front: people started using git to host the plugins they developed and so some nice person extended script/plugin to be able to install plugins hosted in such a manner. If it''s anyone''s "fault" it''s the plugin authors for using git to host their plugins :-) Fred --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
it should also be noted that most of those plugins that the authors chose to host with git will have an http counterpart... I think there is some way to get regular downloads from github On Tue, Feb 10, 2009 at 6:09 PM, Frederick Cheung < frederick.cheung-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > On Feb 10, 10:21 pm, Master Chief 2007 <emailssa...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote: > > Jason Roelofs wrote: > > > > After a lot of hunting on forums, I found this post which says that I > need > > to install this git client! That is not consistent. > > > > :thinking:A gem (git-gem?)dependency I could understand. but a whole new > > client to keep track off? Rails doesnt need you to install svn or > Perforce > > or anything right? You should need these only if you are going to make > > changes to the plug-in.... > > You don''t need svn to use rails but then you wouldn''t be able to > install plugins hosted via svn. > To say rails requires you to install git is back to front: people > started using git to host the plugins they developed and so some nice > person extended script/plugin to be able to install plugins hosted in > such a manner. If it''s anyone''s "fault" it''s the plugin authors for > using git to host their plugins :-) > > Fred > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
The http counterpart is what I was searching for but could not find. I will try to document my travails as a noob to RoR on WinXP and put it on the wiki. Since I installed the git client and installed my keys, I have been able to get the plugins I needed. Next up - I will go for will-paginate and see how my "new found" wisdom helps me :-) Thanks all, as I have been able to move at such a fast pace with all these plugins as compared to any other stack I know of and I have worked on both the Java and the .net stacks... _____ From: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org [mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] On Behalf Of David Herman Sent: Tuesday, February 10, 2009 7:03 PM To: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Subject: [Rails] Re: HowTo install plugins from github? it should also be noted that most of those plugins that the authors chose to host with git will have an http counterpart... I think there is some way to get regular downloads from github On Tue, Feb 10, 2009 at 6:09 PM, Frederick Cheung <frederick.cheung-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: On Feb 10, 10:21 pm, Master Chief 2007 <emailssa...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> Jason Roelofs wrote: > > After a lot of hunting on forums, I found this post which says that I need > to install this git client! That is not consistent. > > :thinking:A gem (git-gem?)dependency I could understand. but a whole new > client to keep track off? Rails doesnt need you to install svn orPerforce> or anything right? You should need these only if you are going to make > changes to the plug-in....You don''t need svn to use rails but then you wouldn''t be able to install plugins hosted via svn. To say rails requires you to install git is back to front: people started using git to host the plugins they developed and so some nice person extended script/plugin to be able to install plugins hosted in such a manner. If it''s anyone''s "fault" it''s the plugin authors for using git to host their plugins :-) Fred --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
On Feb 11, 6:42 am, "Sandeep Sagar" <emailssa...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> The http counterpart is what I was searching for but could not find. >github allows you to download zip/tar files of projects. I don''t think script/plugin understands that though (but for 99.9% of plugins just downloading it and unzipping it into vendor/plugins will do the trick. Fred> I will try to document my travails as a noob to RoR on WinXP and put it on > the wiki. > > Since I installed the git client and installed my keys, I have been able to > get the plugins I needed. > > Next up - I will go for will-paginate and see how my "new found" wisdom > helps me :-) > > Thanks all, as I have been able to move at such a fast pace with all these > plugins as compared to any other stack I know of and I have worked on both > the Java and the .net stacks... > > _____ > > From: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > [mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] On Behalf Of David Herman > Sent: Tuesday, February 10, 2009 7:03 PM > To: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Subject: [Rails] Re: HowTo install plugins from github? > > it should also be noted that most of those plugins that the authors chose to > host with git will have an http counterpart... I think there is some way to > get regular downloads from github > > On Tue, Feb 10, 2009 at 6:09 PM, Frederick Cheung > > <frederick.che...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > On Feb 10, 10:21 pm, Master Chief 2007 <emailssa...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote: > > > > > Jason Roelofs wrote: > > > After a lot of hunting on forums, I found this post which says that I need > > to install this git client! That is not consistent. > > > :thinking:A gem (git-gem?)dependency I could understand. but a whole new > > client to keep track off? Rails doesnt need you to install svn or > Perforce > > or anything right? You should need these only if you are going to make > > changes to the plug-in.... > > You don''t need svn to use rails but then you wouldn''t be able to > install plugins hosted via svn. > To say rails requires you to install git is back to front: people > started using git to host the plugins they developed and so some nice > person extended script/plugin to be able to install plugins hosted in > such a manner. If it''s anyone''s "fault" it''s the plugin authors for > using git to host their plugins :-) > > Fred--~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Is there a difference between ruby script/plugin install git://... and git clone git://... Does the former do more than copy files into the vendors/plugins directory? Is the latter safe? Thanks, MarkD --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
git-clone will simply make a copy of the Git repo (which may or may require some tweaking to get it ready for use) wherever you happen to be in the filesystem whereas script/plugin will place the files in the appropriate folder and make sure everything is ready to use. On Tue, Mar 17, 2009 at 6:14 PM, MarkD <mark.davoren.08-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Is there a difference between > ruby script/plugin install git://... > and > git clone git://... > > Does the former do more than copy files into the vendors/plugins > directory? Is the latter safe? > > Thanks, > MarkD > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Jason Roelofs wrote:> And the problem is? I mean, script/plugin install git... works exactly > as expected, if you have git installed and it works like it should. > > Please state what problem you''re having instead of just blatantly > bashing something that works for 99% of the people who try to use it. > > JasonHi All, I have the same issue on MAC, git install always fail silently. Since I am new to ROR, this is very difficult for me to understand what happens (or not). Here are a few facts that might help to diagnose the issue, even if only 1% are concerned, this represents at least 2 people now ... :-/ script/about About your application''s environment Ruby version 1.8.6 (universal-darwin9.0) RubyGems version 1.3.1 Rack version 1.0 bundled Rails version 2.3.2 Active Record version 2.3.2 Action Pack version 2.3.2 Active Resource version 2.3.2 Action Mailer version 2.3.2 Active Support version 2.3.2 Edge Rails revision unknown Application root /Users/me/Rails/project Environment development Database adapter sqlite3 Database schema version 20090419101050 MAC OS 10.5.6 macos:~$ sudo bash bash-3.2# gem install git Successfully installed git-1.0.5 1 gem installed Installing ri documentation for git-1.0.5... Installing RDoc documentation for git-1.0.5... bash-3.2# git bash: git: command not found So it seems that the git gem is ''''successfully'''' installed but the git command is not found. Did I do something wrong ? Well I am not even sure this is supposed to install a git command, but if I try to install a plugin in a ROR project, I have the following which results in nothing installed: macos:project$ script/plugin --verbose install git://github.com/activescaffold/active_scaffold.git -r rails-2.2 Plugins will be installed using http git init git pull --depth 1 git://github.com/activescaffold/active_scaffold.git rails-2.2 Any advice welcome, meanwhile I''ll keep trying manual install of zip/tgz ... Olivier. -- 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-/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 -~----------~----~----~----~------~----~------~--~---
Olivier Buxter wrote:> I have the same issue on MAC, git install always fail silently.(I assume you meant "Mac" [Macintosh], not "MAC" [media access card]. :) )> Since I am new to ROR, this is very difficult for me to understand what > happens (or not).Your issue has nothing to do with Rails. Please read on. [...]> MAC OS 10.5.6 > macos:~$ sudo bash > bash-3.2# gem install git > Successfully installed git-1.0.5 > 1 gem installed[...]> bash-3.2# git > bash: git: command not found > > So it seems that the git gem is ''''successfully'''' installed but the git > command is not found.Right. The git gem is not the Git client. The Git client is completely independent of Ruby; you will need to install it just the same way you''d install a Subversion or CVS client. I''m not sure what the git gem does, but I would guess that it''s simply some Ruby bindings for Git.> Did I do something wrong ? Well I am not even sure > this is supposed to install a git command, but if I try to install a > plugin in a ROR project, I have the following which results in nothing > installed: > > macos:project$ script/plugin --verbose install > git://github.com/activescaffold/active_scaffold.git -r rails-2.2Yes, this will install nothing because you have no Git client installed. I think script/plugin should print an error message in this case, but unfortunately it doesn''t. [...]> Any advice welcome, meanwhile I''ll keep trying manual install of > zip/tgz ...Install an actual Git client. Problem solved. The situation is analogous to the situation with DBs: there are gems with Ruby bindings for mySQL, PostgreSQL, etc., but you need to install the DB software separately. Git integration works the same way.> > Olivier.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-/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 -~----------~----~----~----~------~----~------~--~---
You can get an OSX dmg for Git here: http://code.google.com/p/git-osx-installer/downloads/list?can=3 or if you have macports: $ sudo port install git-core DZ -- 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-/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 -~----------~----~----~----~------~----~------~--~---
Daniel Zepeda wrote:> You can get an OSX dmg for Git here: > > http://code.google.com/p/git-osx-installer/downloads/list?can=3 > > or if you have macports: > > $ sudo port install git-core > > DZThank you Daniel and Marnen, problem solved! However, I think adding a little check in script/plugin to notify users that the git command is not not found could help newbies like to me to figure out what''s going on ... My 2 cents^H^H carats. :-) Olivier. -- 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-/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 -~----------~----~----~----~------~----~------~--~---