Skip to content

Instantly share code, notes, and snippets.

@veezus
Created September 27, 2009 23:11
Show Gist options
  • Save veezus/195066 to your computer and use it in GitHub Desktop.
Save veezus/195066 to your computer and use it in GitHub Desktop.
class Time
alias :minute :min
alias :second :sec
end
def assign_clicked_at
%w(year month day hour minute second).each do |date_part|
self.send("clicked_at_#{date_part}=", created_at.send(date_part))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment