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:
- Have two separate Ruby installations (each with its own gems).
- 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.
“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
September 23, 2009 at 2:30 pm
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.
September 23, 2009 at 4:23 pm