Sam PiersonSam Pierson
Standup 9/23/2009: Multiple Rubygems Versions, Abstract AR Classes
edit Posted by Sam Pierson on Wednesday September 23, 2009 at 09:14AM

Help

How do you deal with an old, soon to be retired codebase that requires old versions of rubygems and rake, and a new codebase that requires new version of rubygems and rake, on the same machine?

Suggestions:

  1. Have two separate Ruby installations (each with its own gems).
  2. Don't. Use two machines. Optimize for developer resources rather than hardware, the former being much more expensive than the latter.

ActiveRecord Abstract Class doesn't work with validations?

AR allows you to set abstract_class = true. The makes the class uninstantiable, i.e. you can't create instance of the class, you have to create a subclass of it and create an instance of that.

However, if you create an abstract class that contains validations, then subclass it, the subclass produces errors when attempting to validate. This features does not seem well thought out.

Has anyone used Capistrano to deploy to a load balanced EC2 cluster?

Suggestions:

  • Follow the "deploy to localhost" path.
  • Use Cap for bootstrapping and Chef for configuration.

Comments

  1. Stephan Wehner Stephan Wehner on September 23, 2009 at 02:30PM

    "Use two machines" -> Use two VM's. I've been pretty happy with that.

    Make the VM image available for download -> special software installation only required once, developers are all ready to go.

    Stephan

  2. Jack Dempsey Jack Dempsey on September 23, 2009 at 04:23PM

    I've recently been using rvm (http://rvm.beginrescueend.com/) with nice success. If you can't afford the hardware and don't want to run multiple vm's, give rvm a try.