Flowdock
method

perform

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 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 15
        def perform(task, args, config)
          require_rake

          Rake.with_application do |rake|
            rake.init("rails", [task, *args])
            rake.load_rakefile
            if Rails.respond_to?(:root)
              rake.options.suppress_backtrace_pattern = /\A(?!#{Regexp.quote(Rails.root.to_s)})/
            end
            rake.standard_exception_handling { rake.top_level }
          end
        end
Register or log in to add new notes.