You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
file 'README.html' => 'README.md' do |task|
system "pandoc -o #{task.name} #{task.source}"
end
file 'README.md' do |task|
system "curl -O 'https://raw.githubusercontent.com/seomoz/shovel/master/README.md'"
end
The text was updated successfully, but these errors were encountered:
shovel currently has mechanism for this. The nearest thing (which is a far cry from this functionality) is to invoke other tasks within the body of another task. However, this doesn't do any optimization for when dependencies are already satisfied - that would have to be implemented for each method.
To me, its just calling functions. If you need a previous task run, you call it in your shovel/shovel.py and it should run. Then you can throw extra Python logic on it if needed. I find myself using the import os library a lot for file and command based tasks.
I'm looking to implement the equivalent of
The text was updated successfully, but these errors were encountered: