Skip to content

Instantly share code, notes, and snippets.

@hrefhref

hrefhref/cli.rb Secret

Created October 19, 2017 14:21
Show Gist options
  • Save hrefhref/fc254eb2c0e1551e95338bda1b48d33b to your computer and use it in GitHub Desktop.
Save hrefhref/fc254eb2c0e1551e95338bda1b48d33b to your computer and use it in GitHub Desktop.
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