Flowdock
method

rake

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: Build
rake(*tasks) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.