Last active
December 15, 2015 14:29
-
-
Save simeonwillbanks/5275085 to your computer and use it in GitHub Desktop.
#rake namespace alias
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :f do | |
desc "alias for `rake footasticforsure:dowork`" | |
task :d | |
Rake::Task["footasticforsure:dowork"].invoke | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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