Slide 6
Slide 6 text
# app/models/user.rb
class User < ActiveRecord::Base
validates_presence_of :twitter_handle
def tweet
TwitterWrangler.add_to_queue twitter_handle, twitter message
end
private
def twitter_message
“Today my BMI is #{body_mass_index} and I’m
#{percent_of_body_mass_index_goal} from my goal
of #{body_mass_index_goal}!”
end
end