Created
February 4, 2014 08:22
-
-
Save franckverrot/8799940 to your computer and use it in GitHub Desktop.
Rake and Make, for very very simple needs
This file contains 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
default: test | |
test: | |
ruby "test/unittest.rb" |
This file contains 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
task :default => [:test] | |
task :test do | |
ruby "test/unittest.rb" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment