Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created May 26, 2009 12:45
Show Gist options
  • Save kennethkalmer/118043 to your computer and use it in GitHub Desktop.
Save kennethkalmer/118043 to your computer and use it in GitHub Desktop.
# This task will only be ran once
task :foo do
unless fetch(:foo_completed, false) do
run "whoami"
set(:foo_completed, true)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment