Skip to content

Instantly share code, notes, and snippets.

@avsej
Last active December 30, 2015 18:39
Show Gist options
  • Select an option

  • Save avsej/7869317 to your computer and use it in GitHub Desktop.

Select an option

Save avsej/7869317 to your computer and use it in GitHub Desktop.
task :foo do
print ", "
end
task :foo => [:bar] do
puts "world"
end
task :bar do
print "hello"
end
# $ rake foo
# hello, world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment