method

invoke_command

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: Base
invoke_command(command, *) 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/command/base.rb, line 175
        def invoke_command(command, *) # :nodoc:
          @current_subcommand ||= nil
          original_subcommand, @current_subcommand = @current_subcommand, command.name
          super
        ensure
          @current_subcommand = original_subcommand
        end
Register or log in to add new notes.