On Nov 22, 9:36 pm, "Bill Walton" <[EMAIL PROTECTED]> wrote:
> > I'd definitely appreciate a link or two to how to make that work. That is, > I've never figured out how to specify the 'whole package' of gems that > should be pulled into play for a specific app. And then again there's the > whole "is this plugin we're using 2.x compatible? thing. I've got three > apps that are running on Rails 1.2.3, 2.0.2, and 2.1 respectively. It's > been a lot easier to set up three distinct IR installs and work on each app > in the one that contains what it needs. It also debugging easy when I > recently migrated a 1.2.6 app to 2.1. But if there's an easy way to do the > same thing with one install of Ruby, I'd definitely like to know about it. > well plugins are a slightly different issue - you just have the appropriate version in vendor/plugins. If you have a really wide range of rails apps you could end up with problems where the newer stuff needs a recent version of rubygems but the older versions of rails use require_gem which was deprecated and then removed. That aside take a look at http://www.rubygems.org/read/chapter/4#page71 (with the exception that require_gem has been replaced by gem) 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 [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

