class method
self.namespaced_commands
Ruby on Rails 5.1.7
Since v5.1.7 Last seen in v7.0.10 Private — implementation detail, not part of the public APISignature
self.namespaced_commands()
No documentation comment.
Source
# File railties/lib/rails/command/base.rb, line 139
def namespaced_commands
commands.keys.map do |key|
key == command_root_namespace ? key : "#{command_root_namespace}:#{key}"
end
end
Defined in railties/lib/rails/command/base.rb line 139
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Command::Base