Flowdock
method

perform

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: RakeCommand
perform(task, args, config) 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 19
        def perform(task, args, config)
          with_rake(task, *args) do |rake|
            if unrecognized_task = rake.top_level_tasks.find { |task| !rake.lookup(task[/[^\[]+/]) }
              @rake_tasks = rake.tasks
              raise UnrecognizedCommandError.new(unrecognized_task)
            end

            rake.options.suppress_backtrace_pattern = non_app_file_pattern
            rake.standard_exception_handling { rake.top_level }
          end
        end
Register or log in to add new notes.