public
Description: Generate ActiveRecord Aggregations and convenience methods for composing them into your models.
Homepage:
Clone URL: git://github.com/caring/composition_generator.git
name age message
file MIT-LICENSE Loading commit data...
file README
directory generators/
file init.rb
directory lib/
README
CompositionGenerator
====================

Generates a composition model and a convenience method for mixing it into your models.

Example
=======

./script/generate composition address street city state zip_code

class Person < ActiveRecord::Base
  has_address
end

p = Person.new

p.address = Address.new('1234 S. Main St.', 'Anytown', 'CA', 91234)


p.address.street
# => "1234 S. Main St."

p.street
# => "1234 S. Main St."

Copyright (c) 2008 Chris Eppstein, released under the MIT license