Skip to content

Instantly share code, notes, and snippets.

@richmolj
Created June 21, 2013 15:52
Show Gist options
  • Save richmolj/5832170 to your computer and use it in GitHub Desktop.
Save richmolj/5832170 to your computer and use it in GitHub Desktop.
class Delay
def by
# complex logic
result = yield
# complex logic
result
end
end
class Post
def publish
Delay.by { 24.hours }
save
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment