Class: Rails::Command::Base
- Inherits:
-
Thor
- Object
- Thor
- Rails::Command::Base
- Includes:
- Actions
- Defined in:
- lib/rails/command/base.rb
Direct Known Subclasses
AboutCommand, App::UpdateCommand, ApplicationCommand, BootCommand, ConsoleCommand, CredentialsCommand, Db::System::ChangeCommand, DbconsoleCommand, DestroyCommand, DevCommand, DevcontainerCommand, EncryptedCommand, GemHelpCommand, GenerateCommand, HelpCommand, InitializersCommand, MiddlewareCommand, NewCommand, NotesCommand, PluginCommand, RakeCommand, RestartCommand, RoutesCommand, RunnerCommand, SecretCommand, ServerCommand, TestCommand, UnusedRoutesCommand, VersionCommand
Defined Under Namespace
Classes: Error
Class Method Summary collapse
- .banner(command = nil) ⇒ Object
-
.base_name ⇒ Object
Sets the base_name taking into account the current class namespace.
-
.class_usage ⇒ Object
:nodoc:.
-
.command_name ⇒ Object
Return command name without namespaces.
-
.default_command_root ⇒ Object
Default file root to place extra files a command might need, placed one folder above the command file.
-
.desc(usage = nil, description = nil, options = {}) ⇒ Object
Tries to get the description from a USAGE file one folder above the command root.
-
.engine? ⇒ Boolean
Returns true when the app is a Rails engine.
- .executable(command_name = self.command_name) ⇒ Object
-
.exit_on_failure? ⇒ Boolean
:nodoc:.
-
.help(shell) ⇒ Object
Override Thor’s class-level help to also show the USAGE.
-
.hide_command! ⇒ Object
Convenience method to hide this command from the available ones when running rails command.
-
.inherited(base) ⇒ Object
:nodoc:.
-
.namespace(name = nil) ⇒ Object
Convenience method to get the namespace from the class name.
-
.perform(command, args, config) ⇒ Object
:nodoc:.
- .printing_commands ⇒ Object
-
.usage_path ⇒ Object
Path to lookup a USAGE description in a file.
Methods included from Actions
#boot_application!, #load_environment_config!, #load_generators, #load_tasks, #require_application!, #set_application_directory!
Class Method Details
.banner(command = nil) ⇒ Object
86 87 88 89 90 91 92 93 94 95 |
# File 'lib/rails/command/base.rb', line 86 def (command = nil, *) if command # Similar to Thor's banner, but show the namespace (minus the # "rails:" prefix), and show the command's declared bin instead of # the command runner. command.formatted_usage(self).gsub(/^#{namespace}:(\w+)/) { executable($1) } else executable end end |
.base_name ⇒ Object
Sets the base_name taking into account the current class namespace.
Rails::Command::TestCommand.base_name # => 'rails'
106 107 108 109 110 |
# File 'lib/rails/command/base.rb', line 106 def base_name @base_name ||= if base = name.to_s.split("::").first base.underscore end end |
.class_usage ⇒ Object
:nodoc:
122 123 124 125 126 |
# File 'lib/rails/command/base.rb', line 122 def class_usage # :nodoc: if usage_path @class_usage ||= ERB.new(File.read(usage_path), trim_mode: "-").result(binding) end end |
.command_name ⇒ Object
Return command name without namespaces.
Rails::Command::TestCommand.command_name # => 'test'
115 116 117 118 119 120 |
# File 'lib/rails/command/base.rb', line 115 def command_name @command_name ||= if command = name.to_s.split("::").last command.chomp!("Command") command.underscore end end |
.default_command_root ⇒ Object
Default file root to place extra files a command might need, placed one folder above the command file.
For a Rails::Command::TestCommand placed in rails/command/test_command.rb
would return rails/test
.
139 140 141 142 |
# File 'lib/rails/command/base.rb', line 139 def default_command_root @default_command_root = resolve_path(".") unless defined?(@default_command_root) @default_command_root end |
.desc(usage = nil, description = nil, options = {}) ⇒ Object
Tries to get the description from a USAGE file one folder above the command root.
34 35 36 37 38 39 40 |
# File 'lib/rails/command/base.rb', line 34 def desc(usage = nil, description = nil, = {}) if usage super else class_usage end end |
.engine? ⇒ Boolean
Returns true when the app is a Rails engine.
28 29 30 |
# File 'lib/rails/command/base.rb', line 28 def engine? defined?(ENGINE_ROOT) end |
.executable(command_name = self.command_name) ⇒ Object
82 83 84 |
# File 'lib/rails/command/base.rb', line 82 def executable(command_name = self.command_name) "#{bin} #{namespaced_name(command_name)}" end |
.exit_on_failure? ⇒ Boolean
:nodoc:
23 24 25 |
# File 'lib/rails/command/base.rb', line 23 def exit_on_failure? # :nodoc: false end |
.help(shell) ⇒ Object
Override Thor’s class-level help to also show the USAGE.
98 99 100 101 |
# File 'lib/rails/command/base.rb', line 98 def help(shell, *) # :nodoc: super shell.say class_usage if class_usage end |
.hide_command! ⇒ Object
Convenience method to hide this command from the available ones when running rails command.
55 56 57 |
# File 'lib/rails/command/base.rb', line 55 def hide_command! Rails::Command.hidden_commands << self end |
.inherited(base) ⇒ Object
:nodoc:
59 60 61 62 63 64 65 |
# File 'lib/rails/command/base.rb', line 59 def inherited(base) # :nodoc: super if base.name && !base.name.end_with?("Base") Rails::Command.subclasses << base end end |
.namespace(name = nil) ⇒ Object
Convenience method to get the namespace from the class name. It’s the same as Thor default except that the Command at the end of the class is removed.
45 46 47 48 49 50 51 |
# File 'lib/rails/command/base.rb', line 45 def namespace(name = nil) if name super else @namespace ||= super.chomp("_command").sub(/:command:/, ":") end end |
.perform(command, args, config) ⇒ Object
:nodoc:
67 68 69 70 71 72 73 74 |
# File 'lib/rails/command/base.rb', line 67 def perform(command, args, config) # :nodoc: if Rails::Command::HELP_MAPPINGS.include?(args.first) command, args = "help", [command] args.clear if instance_method(:help).arity.zero? end dispatch(command, args.dup, nil, config) end |
.printing_commands ⇒ Object
76 77 78 79 80 |
# File '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 |
.usage_path ⇒ Object
Path to lookup a USAGE description in a file.
129 130 131 132 |
# File 'lib/rails/command/base.rb', line 129 def usage_path @usage_path = resolve_path("USAGE") unless defined?(@usage_path) @usage_path end |