search for: check_greet

Displaying 1 result from an estimated 1 matches for "check_greet".

Did you mean: check_free
2011 Jun 11
15
after initialize blowing up---help
...able :greetings do |t| t.string :greet t.string :language t.integer :count t.timestamps end end def self.down drop_table :greetings end end ================== greeting.rb ============================= class Greeting < ActiveRecord::Base after_initialize :check_greet validates_uniqueness_of :count def check_greet self.language = lanugage.capitalize end end =================== greeting.yml ========================== hello: greet: howdy language: english count: 44 hola: greet: hola, que tal language: spanish count: 55 ===================...