Rails 1.1 and Rails 1.0 gems

Firstly, Congrats to the Rails team for the 1.1 release!

I installed Rails using the package created by Tony Arnold, referenced
here:

http://tonyarnold.com/articles/2005/08/10/rolling-with-ruby-on-rails-on-mac-os-x-tiger-for-beginners

I did the upgrade to Rails 1.1 and all went well. Now, however, I seem
to have two sets of gems installed. Doing a ‘gems list’, I see:

actionmailer (1.2.0, 1.1.5)
Service layer for easy email delivery and testing.

actionpack (1.12.0, 1.11.2)
Web-flow and rendering framework putting the VC in MVC.

actionwebservice (1.1.0, 1.0.0)
Web service support for Action Pack.

activerecord (1.14.0, 1.13.2)
Implements the ActiveRecord pattern for ORM.

activesupport (1.3.0, 1.2.5)
Support and utility classes used by the Rails framework.

rails (1.1.0, 1.0.0)
Web-application framework with template engine, control-flow layer,
and ORM.

Is there a way to remove the older versions? Should I just keep them?

Thanks!

“John” == John T. [email protected] writes:

Is there a way to remove the older versions? Should I just keep them?

“gem cleanup”

	     Calle D. <[email protected]>
	 http://www.livejournal.com/users/cdybedahl/

“But that was in the gauzy realm of meat and oxygen, not this real
world
here on the screen.” – archbishopm, LiveJournal

On 3/28/06, Calle D. [email protected] wrote:

“gem cleanup”

Cool, thanks!