Skip to content

Instantly share code, notes, and snippets.

@simeonwillbanks
Last active December 15, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simeonwillbanks/5275085 to your computer and use it in GitHub Desktop.
Save simeonwillbanks/5275085 to your computer and use it in GitHub Desktop.
#rake namespace alias
namespace :f do
desc "alias for `rake footasticforsure:dowork`"
task :d
Rake::Task["footasticforsure:dowork"].invoke
end
end
namespace :footasticforsure do
desc "foo fantastic work will be done, for sure"
task :dowork do
# magic
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment