Rakefile in rerun-0.10.0 vs Rakefile in rerun-0.11.0
- old
+ new
@@ -71,5 +71,12 @@
sh "gem push #{package('.gem')}"
puts "Tagging and pushing"
sh "git tag v#{$spec.version}"
sh "git push && git push --tags"
end
+
+desc 'download github issues and pull requests'
+task 'github' do
+ %w(issues pulls).each do |type|
+ sh "curl -o #{type}.json https://api.github.com/repos/alexch/rerun/#{type}"
+ end
+end