Hi, could someone tell me how to list and update the currently installed gems on my rails installation? Thanks in advance, -Conrad
If you''ll run gem_server and then point you browser to http://localhost:8808 you''ll see a list of your installed gems. On Tue, 2006-02-28 at 10:33 -0800, Conrad Taylor wrote:> Hi, could someone tell me how to list and update the currently > installed gems on my rails installation? > > Thanks in advance, > > -Conrad > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/railsCharlie Bowman http://www.recentrambles.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060228/88075154/attachment.html
On Feb 28, 2006, at 10:47 AM, Charlie Bowman wrote:> If you''ll run gem_server and then point you browser to http:// > localhost:8808 you''ll see a list of your installed gems. > > > > On Tue, 2006-02-28 at 10:33 -0800, Conrad Taylor wrote: >> Hi, could someone tell me how to list and update the currently >> installed gems on my rails installation? Thanks in advance, - >> Conrad _______________________________________________ Rails >> mailing list Rails@lists.rubyonrails.org http:// >> lists.rubyonrails.org/mailman/listinfo/rails > > Charlie Bowman > http://www.recentrambles.com > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/railsConrad- This command will list all your currently installed gems: $ gem list And this one will list all the gems available from rubyforge: $ gem list --remote And to update all your installed gems: $ sudo gem update Also this is your friend: $ gem help Cheers- -Ezra Zygmuntowicz Yakima Herald-Republic WebMaster http://yakimaherald.com 509-577-7732 ezra@yakima-herald.com
Conrad Taylor wrote:> Hi, could someone tell me how to list and update the currently > installed gems on my rails installation? >I use c:>gem list to see the list. I believe c:>gem update --include-dependencies will update all your gems and all of their dependencies. I usually update one gem at a time, for example: c:>gem update rake --include-dependencies but according to the help (gem update --help) it seems to imply that all gems will be updated if you don''t specify a particular gem. HTH, Jeff www.softiesonrails.com -- Posted via http://www.ruby-forum.com/.
Hi , thanks for the information. -Conrad On 2/28/06, Ezra Zygmuntowicz <ezra@yakima-herald.com> wrote:> > On Feb 28, 2006, at 10:47 AM, Charlie Bowman wrote: > > > If you''ll run gem_server and then point you browser to http:// > > localhost:8808 you''ll see a list of your installed gems. > > > > > > > > On Tue, 2006-02-28 at 10:33 -0800, Conrad Taylor wrote: > >> Hi, could someone tell me how to list and update the currently > >> installed gems on my rails installation? Thanks in advance, - > >> Conrad _______________________________________________ Rails > >> mailing list Rails@lists.rubyonrails.org http:// > >> lists.rubyonrails.org/mailman/listinfo/rails > > > > Charlie Bowman > > http://www.recentrambles.com > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > Conrad- > > This command will list all your currently installed gems: > > $ gem list > > And this one will list all the gems available from rubyforge: > > $ gem list --remote > > And to update all your installed gems: > > $ sudo gem update > > Also this is your friend: > > $ gem help > > > Cheers- > -Ezra Zygmuntowicz > Yakima Herald-Republic > WebMaster > http://yakimaherald.com > 509-577-7732 > ezra@yakima-herald.com > > > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Hi, how does one know when update a gem? Is it a blog that one can reference to tell them to update Rails gems? Thanks in advance, -Conrad On 2/28/06, Conrad Taylor <conradwt@gmail.com> wrote:> Hi , thanks for the information. > > -Conrad > > On 2/28/06, Ezra Zygmuntowicz <ezra@yakima-herald.com> wrote: > > > > On Feb 28, 2006, at 10:47 AM, Charlie Bowman wrote: > > > > > If you''ll run gem_server and then point you browser to http:// > > > localhost:8808 you''ll see a list of your installed gems. > > > > > > > > > > > > On Tue, 2006-02-28 at 10:33 -0800, Conrad Taylor wrote: > > >> Hi, could someone tell me how to list and update the currently > > >> installed gems on my rails installation? Thanks in advance, - > > >> Conrad _______________________________________________ Rails > > >> mailing list Rails@lists.rubyonrails.org http:// > > >> lists.rubyonrails.org/mailman/listinfo/rails > > > > > > Charlie Bowman > > > http://www.recentrambles.com > > > _______________________________________________ > > > Rails mailing list > > > Rails@lists.rubyonrails.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > Conrad- > > > > This command will list all your currently installed gems: > > > > $ gem list > > > > And this one will list all the gems available from rubyforge: > > > > $ gem list --remote > > > > And to update all your installed gems: > > > > $ sudo gem update > > > > Also this is your friend: > > > > $ gem help > > > > > > Cheers- > > -Ezra Zygmuntowicz > > Yakima Herald-Republic > > WebMaster > > http://yakimaherald.com > > 509-577-7732 > > ezra@yakima-herald.com > > > > > > > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > >