Flowdock
method

perform

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: RakeCommand
perform(task, *) public

No documentation

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

Hide source
# File railties/lib/rails/commands/rake/rake_command.rb, line 13
        def perform(task, *)
          require_rake

          ARGV.unshift(task) # Prepend the task, so Rake knows how to run it.

          Rake.application.standard_exception_handling do
            Rake.application.init("rails")
            Rake.application.load_rakefile
            Rake.application.top_level
          end
        end
Register or log in to add new notes.