ryantownsend (owner)

Revisions

  • 5314e5 Sun Feb 01 02:33:51 -0800 2009
gist: 55844 Download_button fork
public
Public Clone URL: git://gist.github.com/55844.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
if session[:spam_timestamp] && (Time.now.to_i - session[:spam_timestamp].to_i) > 15
  # not spam
  # ...
  # @comment.save ...
  # ...
else
  # spam
  # render :action => 'spam'
end