Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
class Reservation < ActiveRecord::Base attr_accessor :no_of_nights before_validation :set_end_date private def set_end_date self.end_date = (self.start_date + (self.no_of_nights.to_i).days) end end
This paste will be private.
From the Design Piracy series on my blog: