class method
self.printing_commands
Ruby on Rails 7.2.3
Since v5.2.8.1Signature
self.printing_commands()
No documentation comment.
Source
# File railties/lib/rails/command/base.rb, line 76
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 76
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Command::Base