Blog

Monday, December 1, 2008

Setting up a Business in Ontario

Setting up your own business is a pretty straight forward affair, when you know how. Here are the basics:

  1. Register your Trade Name
  2. Setup Bank Account - typically with your current bank
  3. Register Business Number - Online Registration

Additional References

Saturday, November 15, 2008

Updating Ruby Gems

I was trying to update my RubyGems to 1.3.1 on OSX 10.5.5 to tryout the Merb Peepcode Screencast with the following command and got the resulting error:


So instead I tried the RubyGems update gem which worked:


Monday, March 17, 2008

Fundamentals: How Associations are Validated

Summary: Adding validates_associated method to your parent ActiveRecord classes will ensure both the parent and child class are valid before saving.

In this posting we will use the same model as our last post When Associations Get Saved.

Last time, we established that associated child models are automatically saved when the parent is saved. For example:


Here the associated address is saved when account is saved. But how does validation play into the saving of associations?

In this example, we have added no additional validation rules:


Although the account is valid, the address is not, it is missing the street address. When account is saved, it attempts to save the address model, but it cannot. Typically in this scenario we would prefer that the parent model is not saved if the child model in invalid and cannot be saved. How can we achieve this?

Add the following to your account model:


And observe the difference in model behavior:


As you can see an exception is raised when the account is saved as the address is invalid.

In conclusion, when a dependent model needs to be valid add the validates_associcated method to the parent model.

Please note this blog is no longer maintained. Please visit CivilCode Inc - Custom Software Development.