method
rake
v3.2.1 -
Show latest stable
- Class:
Build
rake(*tasks)public
No documentation available.
# File ci/travis.rb, line 91
def rake(*tasks)
tasks.each do |task|
cmd = "bundle exec rake #{task}"
puts "Running command: #{cmd}"
return false unless system(cmd)
end
true
end