Hi all, I''ve written a couple of rails plugins and want to be able to use Rails'' script/plugin script to add and remove them from my projects. I''ve put them in a svn repository, yet the plugin script doesn''t seem to recognise them. I''m doing the following: $ script/plugin -v list --source=http://my_repos/trunk Discovering plugins in http://my_repos/trunk/ nil The repository has the structure trunk/ plugin1/ plugin2/ etc. Is there another step to get the script to recognise these plugins? Many thanks, Adam --~--~---------~--~----~------------~-------~--~----~ 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 Nov 6, 2008, at 8:29 AM, Adam wrote:> > Hi all, > > I''ve written a couple of rails plugins and want to be able to use > Rails'' script/plugin script to add and remove them from my projects. > I''ve put them in a svn repository, yet the plugin script doesn''t seem > to recognise them. I''m doing the following: > > $ script/plugin -v list --source=http://my_repos/trunk > Discovering plugins in http://my_repos/trunk/ > nil > > The repository has the structure > trunk/ > plugin1/ > plugin2/ > etc. > > Is there another step to get the script to recognise these plugins?Why don''t you just do... ./script/plugin install http://my_repos/trunk/plugin1 ? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Sorry, should have said, I have done that as well but I get a "Plugin not found error", which is why I''m guessing that something is wrong with my setup. On 6 Nov, 16:49, Philip Hallstrom <phi...-LSG90OXdqQE@public.gmane.org> wrote:> On Nov 6, 2008, at 8:29 AM, Adam wrote: > > > > > > > Hi all, > > > I''ve written a couple of rails plugins and want to be able to use > > Rails'' script/plugin script to add and remove them from my projects. > > I''ve put them in a svn repository, yet the plugin script doesn''t seem > > to recognise them. I''m doing the following: > > > $ script/plugin -v list --source=http://my_repos/trunk > > Discovering plugins inhttp://my_repos/trunk/ > > nil > > > The repository has the structure > > trunk/ > > plugin1/ > > plugin2/ > > etc. > > > Is there another step to get the script to recognise these plugins? > > Why don''t you just do... > > ./script/plugin installhttp://my_repos/trunk/plugin1 > > ?--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
i face the same problem, does anyone know an idea? On Nov 7, 1:05 am, Adam <adampennycu...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Sorry, should have said, I have done that as well but I get a "Plugin > not found error", which is why I''m guessing that something is wrong > with my setup. > > On 6 Nov, 16:49, Philip Hallstrom <phi...-LSG90OXdqQE@public.gmane.org> wrote: > > > On Nov 6, 2008, at 8:29 AM, Adam wrote: > > > > Hi all, > > > > I''ve written a couple of rails plugins and want to be able to use > > > Rails'' script/plugin script to add and remove them from my projects. > > > I''ve put them in a svn repository, yet the plugin script doesn''t seem > > > to recognise them. I''m doing the following: > > > > $ script/plugin -v list --source=http://my_repos/trunk > > > Discovering plugins inhttp://my_repos/trunk/ > > > nil > > > > The repository has the structure > > > trunk/ > > > plugin1/ > > > plugin2/ > > > etc. > > > > Is there another step to get the script to recognise these plugins? > > > Why don''t you just do... > > > ./script/plugin installhttp://my_repos/trunk/plugin1 > > > ?--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
On 13-Nov-08, at 8:02 PM, Kang Peng wrote:> > i face the same problem, does anyone know an idea? > > On Nov 7, 1:05 am, Adam <adampennycu...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> Sorry, should have said, I have done that as well but I get a "Plugin >> not found error", which is why I''m guessing that something is wrong >> with my setup. >> >> On 6 Nov, 16:49, Philip Hallstrom <phi...-LSG90OXdqQE@public.gmane.org> wrote: >> >>> On Nov 6, 2008, at 8:29 AM, Adam wrote: >> >>>> Hi all, >> >>>> I''ve written a couple of rails plugins and want to be able to use >>>> Rails'' script/plugin script to add and remove them from my >>>> projects. >>>> I''ve put them in a svn repository, yet the plugin script doesn''t >>>> seem >>>> to recognise them. I''m doing the following: >> >>>> $ script/plugin -v list --source=http://my_repos/trunk >>>> Discovering plugins inhttp://my_repos/trunk/ >>>> nil >> >>>> The repository has the structure >>>> trunk/ >>>> plugin1/ >>>> plugin2/ >>>> etc. >> >>>> Is there another step to get the script to recognise these plugins? >> >>> Why don''t you just do... >> >>> ./script/plugin installhttp://my_repos/trunk/plugin1 >> >>> ?the plugin install script scrapes this page: http://wiki.rubyonrails.org/rails/pages/Plugins Jodi --~--~---------~--~----~------------~-------~--~----~ 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. On Fri, Nov 14, 2008 at 9:36 AM, Jodi Showers <jodi-BOB1p6JRLoAV+D8aMU/kSg@public.gmane.org> wrote:> > > On 13-Nov-08, at 8:02 PM, Kang Peng wrote: > > > > > i face the same problem, does anyone know an idea? > > > > On Nov 7, 1:05 am, Adam <adampennycu...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Sorry, should have said, I have done that as well but I get a "Plugin > >> not found error", which is why I''m guessing that something is wrong > >> with my setup. > >> > >> On 6 Nov, 16:49, Philip Hallstrom <phi...-LSG90OXdqQE@public.gmane.org> wrote: > >> > >>> On Nov 6, 2008, at 8:29 AM, Adam wrote: > >> > >>>> Hi all, > >> > >>>> I''ve written a couple of rails plugins and want to be able to use > >>>> Rails'' script/plugin script to add and remove them from my > >>>> projects. > >>>> I''ve put them in a svn repository, yet the plugin script doesn''t > >>>> seem > >>>> to recognise them. I''m doing the following: > >> > >>>> $ script/plugin -v list --source=http://my_repos/trunk > >>>> Discovering plugins inhttp://my_repos/trunk/ > >>>> nil > >> > >>>> The repository has the structure > >>>> trunk/ > >>>> plugin1/ > >>>> plugin2/ > >>>> etc. > >> > >>>> Is there another step to get the script to recognise these plugins? > >> > >>> Why don''t you just do... > >> > >>> ./script/plugin installhttp://my_repos/trunk/plugin1 > >> > >>> ? > > > the plugin install script scrapes this page: > > http://wiki.rubyonrails.org/rails/pages/Plugins > > Jodi > > > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---