-
-
Save hrefhref/fc254eb2c0e1551e95338bda1b48d33b to your computer and use it in GitHub Desktop.
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
require 'rake' | |
task = args.first | |
ARGV.unshift(task) | |
Rake.application.init('dradis') | |
Rake.application.load_rakefile | |
if task | |
puts "Running task: #{task}" | |
Rake.application.standard_exception_handling do | |
Rake.application.top_level | |
end | |
else | |
puts "No rake task specified." | |
Rake.application.tasks.each {|t| | |
puts "- #{t.name_with_args}" | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment