Class: Rails::Command::DevcontainerCommand

Inherits:
Base
  • Object
show all
Defined in:
lib/rails/commands/devcontainer/devcontainer_command.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from Base

banner, base_name, class_usage, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, help, hide_command!, inherited, namespace, perform, printing_commands, usage_path

Methods included from Actions

#boot_application!, #load_environment_config!, #load_generators, #load_tasks, #require_application!, #set_application_directory!

Instance Method Details

#performObject



10
11
12
13
14
15
16
17
18
19
# File 'lib/rails/commands/devcontainer/devcontainer_command.rb', line 10

def perform(*)
  boot_application!

  say "Generating Dev Container with the following options:"
  devcontainer_options.each do |option, value|
    say "#{option}: #{value}"
  end

  Rails::Generators::DevcontainerGenerator.new([], devcontainer_options).invoke_all
end