class method
self.printing_commands
Ruby on Rails 8.1.2
Since v5.2.8.1Signature
self.printing_commands()
No documentation comment.
Source
# File railties/lib/rails/command/base.rb, line 74
def printing_commands
commands.filter_map do |name, command|
[namespaced_name(name), command.description] unless command.hidden?
end
end
Defined in railties/lib/rails/command/base.rb line 74
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Command::Base