View difference between Paste ID: jBQjaJSm and yikR8yPx
SHOW: | | - or go back to the newest paste.
1-
#!/usr/bin/env ruby
1+
# does nothing
2-
#^syntax detection
2+
3
4-
#
4+
task "blob" => "dir1" do
5-
# I had an issue where the directory command would do nothing,
5+
  # Do stuff in dir1
6-
# seems that the "dir1" task must be used before it creates a dir
6+
end
7-
#
7+
8
# @TODO: Test to ensure this runs in windows cmd
9-
# does nothing on it's own
9+
task :default do
10
  sh "rake blob"
11
end