rake icon indicating copy to clipboard operation
rake copied to clipboard

How to get exit status of the rake task using rake API

Open saraniyadev opened this issue 9 years ago • 0 comments

Is their a possibility to get the exit status of a rake task when executed inside a ruby script.

My config rake method looks like below

desc "Run serverspec to #{host}"
    RSpec::Core::RakeTask.new(host) do |t|
      ENV['TARGET_HOST'] = host
      t.pattern = "spec/cfengine3/*_spec.rb"
    end

My run methods contains below code

Rake.application.init
Rake.application.top_level

I am not able to get exit status of my rake task invoked by top_level

saraniyadev avatar Nov 10 '16 04:11 saraniyadev