123456789_123456789_123456789_123456789_123456789_

Class: Rails::Generators::AppGenerator

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, AppBase, Base, Thor::Group
Instance Chain:
self, AppBase, AppName, Database, Base, Actions, Thor::Actions, Thor::Group
Inherits: Rails::Generators::AppBase
Defined in: railties/lib/rails/generators/rails/app/app_generator.rb,
railties/lib/rails/commands/application/application_command.rb

Constant Summary

Database - Included

DATABASES, JDBC_DATABASES

AppName - Included

RESERVED_NAMES

AppBase - Inherited

BUN_VERSION, NODE_LTS_VERSION, OPTION_IMPLICATIONS

Class Attribute Summary

  • .exit_on_failure? ⇒ Boolean readonly Internal use only

    We want to exit on failure to be kind to other libraries This is only when accessing via CLI.

Base - Inherited

Class Method Summary

AppBase - Inherited

Base - Inherited

.base_root

Returns the base root for a common set of generators.

.default_source_root

Returns the default source root for a given generator.

.desc

Tries to get the description from a USAGE file one folder above the source root otherwise uses a default description.

.hide!

Convenience method to hide this generator from the available ones when running rails generator command.

.hook_for

Invoke a generator based on the value supplied by the user to the given option named “name”.

.namespace

Convenience method to get the namespace from the class name.

.remove_hook_for

Remove a previously added hook.

.source_root

Returns the source root for this generator using default_source_root as default.

.add_shebang_option!

Small macro to add ruby as an option to the generator with proper default value plus an instance helper method called shebang.

.banner

Use Rails default banner.

.base_name

Sets the base_name taking into account the current class namespace.

.default_aliases_for_option

Returns default aliases for the option name given doing a lookup in aliases.

.default_for_option

Returns default for the option name given doing a lookup in config.

.default_generator_root,
.default_value_for_option

Returns the default value for the option name given doing a lookup in options.

.generator_name

Removes the namespaces and get the generator name.

.usage_path,
.class_option

Make class option aware of options and aliases.

.inherited

Cache source root and add lib/generators/base/generator/templates to source paths.

.hooks

Keep hooks configuration that are used on prepare_for_invocation.

.prepare_for_invocation

Prepare class invocation to search on ::Rails namespace if a previous added hook is being used.

Instance Attribute Summary

Instance Method Summary

AppBase - Inherited

AppName - Included

Database - Included

Base - Inherited

#class_collisions

Check whether the given class names are already taken by user application or Ruby on ::Rails.

#extract_last_module

Takes in an array of nested modules and extracts the last module.

#indent,
#module_namespacing

Wrap block with namespace of current application if namespace exists and is not skipped.

#namespace, #namespace_dirs, #namespaced_path, #wrap_with_namespace

Actions - Included

#add_source

Add the given source to Gemfile

#application
#environment

Adds configuration code to a Rails runtime environment.

#gem

Adds a gem declaration to the Gemfile for the specified gem.

#gem_group

Wraps gem entries inside a group.

#generate

Runs another generator.

#git

Runs one or more git commands.

#github,
#initializer

Creates an initializer file in config/initializers/.

#lib

Creates a file in lib/.

#rails_command

Runs the specified Rails command.

#rake

Runs the specified Rake task.

#rakefile

Creates a Rake tasks file in lib/tasks/.

#readme

Reads the given file at the source root and prints it in the console.

#route

Make an entry in Rails routing file config/routes.rb.

#vendor

Creates a file in vendor/.

#append_file_with_newline

Append string to a file with a newline if necessary.

#execute_command

Runs the supplied command using either “rake …” or “rails …” based on the executor parameter provided.

#indentation

Indent the Gemfile to the depth of @indentation.

#log

Define log for backwards compatibility.

#match_file,
#optimize_indentation

Returns optimized string with indentation.

#quote

Always returns value in double quotes.

#rebase_indentation
#route_namespace_pattern,
#with_indentation

Manage Gemfile indentation for a DSL action block.

#initialize

Constructor Details

.new(*args) ⇒ AppGenerator

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 316

def initialize(*args)
  super

  imply_options(OPTION_IMPLICATIONS, meta_options: META_OPTIONS)

  if !options[:skip_active_record] && !DATABASES.include?(options[:database])
    raise Error, "Invalid value for --database option. Supported preconfigurations are: #{DATABASES.join(", ")}."
  end

  @after_bundle_callbacks = []
end

Class Attribute Details

.exit_on_failure?Boolean (readonly)

This method is for internal use only.

We want to exit on failure to be kind to other libraries This is only when accessing via CLI

[ GitHub ]

  
# File 'railties/lib/rails/commands/application/application_command.rb', line 11

def self.exit_on_failure?
  true
end

Class Method Details

.apply_rails_template(template, destination)

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 308

def self.apply_rails_template(template, destination) # :nodoc:
  generator = new([destination], { template: template }, { destination_root: destination })
  generator.set_default_accessors!
  generator.apply_rails_template
  generator.run_bundle
  generator.run_after_bundle_callbacks
end

Instance Method Details

#after_bundle(&block) (private)

Registers a callback to be executed after bundle binstubs have run.

after_bundle do
  git add: '.'
end
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 574

def after_bundle(&block) # :doc:
  @after_bundle_callbacks << block
end

#create_active_record_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 401

def create_active_record_files
  return if options[:skip_active_record]
  build(:database_yml)
end

#create_app_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 349

def create_app_files
  build(:app)
end

#create_bin_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 353

def create_bin_files
  build(:bin)
end

#create_boot_file

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 397

def create_boot_file
  template "config/boot.rb"
end

#create_config_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 374

def create_config_files
  build(:config)
end

#create_credentials

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 387

def create_credentials
  build(:credentials)
  build(:credentials_diff_enroll)
end

#create_db_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 406

def create_db_files
  return if options[:skip_active_record]
  build(:db)
end

#create_dockerfiles

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 369

def create_dockerfiles
  return if options[:skip_docker] || options[:dummy_app]
  build(:dockerfiles)
end

#create_lib_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 411

def create_lib_files
  build(:lib)
end

#create_log_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 415

def create_log_files
  build(:log)
end

#create_master_key

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 383

def create_master_key
  build(:master_key)
end

#create_public_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 419

def create_public_files
  build(:public_directory)
end

#create_root_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 333

def create_root_files
  build(:readme)
  build(:rakefile)
  build(:node_version) if using_node?
  build(:ruby_version)
  build(:configru)

  unless options[:skip_git]
    build(:gitignore)
    build(:gitattributes)
  end

  build(:gemfile)
  build(:version_control)
end

#create_storage_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 439

def create_storage_files
  build(:storage)
end

#create_system_test_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 435

def create_system_test_files
  build(:system_test) if depends_on_system_test?
end

#create_test_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 431

def create_test_files
  build(:test) unless options[:skip_test]
end

#create_tmp_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 423

def create_tmp_files
  build(:tmp)
end

#create_vendor_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 427

def create_vendor_files
  build(:vendor)
end

#delete_action_cable_files_skipping_action_cable

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 513

def delete_action_cable_files_skipping_action_cable
  if options[:skip_action_cable]
    remove_dir "app/javascript/channels"
    remove_dir "app/channels"
    remove_dir "test/channels"
  end
end

#delete_action_mailer_files_skipping_action_mailer

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 504

def delete_action_mailer_files_skipping_action_mailer
  if options[:skip_action_mailer]
    remove_file "app/views/layouts/mailer.html.erb"
    remove_file "app/views/layouts/mailer.text.erb"
    remove_dir "app/mailers"
    remove_dir "test/mailers"
  end
end

#delete_active_job_folder_if_skipping_active_job

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 498

def delete_active_job_folder_if_skipping_active_job
  if options[:skip_active_job]
    remove_dir "app/jobs"
  end
end

#delete_api_initializers

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 528

def delete_api_initializers
  unless options[:api]
    remove_file "config/initializers/cors.rb"
  end
end

#delete_app_assets_if_api_option

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 443

def delete_app_assets_if_api_option
  if options[:api]
    remove_dir "app/assets"
    remove_dir "lib/assets"
    remove_dir "tmp/cache/assets"
  end
end

#delete_app_helpers_if_api_option

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 451

def delete_app_helpers_if_api_option
  if options[:api]
    remove_dir "app/helpers"
    remove_dir "test/helpers"
  end
end

#delete_app_views_if_api_option

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 458

def delete_app_views_if_api_option
  if options[:api]
    if options[:skip_action_mailer]
      remove_dir "app/views"
    else
      remove_file "app/views/layouts/application.html.erb"
    end
  end
end

#delete_application_record_skipping_active_record

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 492

def delete_application_record_skipping_active_record
  if options[:skip_active_record]
    remove_file "app/models/application_record.rb"
  end
end

#delete_assets_initializer_skipping_sprockets_and_propshaft

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 479

def delete_assets_initializer_skipping_sprockets_and_propshaft
  if skip_sprockets? && skip_propshaft?
    remove_file "config/initializers/assets.rb"
  end

  if skip_sprockets?
    remove_file "app/assets/config/manifest.js"
    remove_dir  "app/assets/config"
    remove_file "app/assets/stylesheets/application.css"
    create_file "app/assets/stylesheets/application.css", "/* Application styles */\n" unless options[:api]
  end
end

#delete_new_framework_defaults

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 534

def delete_new_framework_defaults
  unless options[:update]
    remove_file "config/initializers/new_framework_defaults_#{Rails::VERSION::MAJOR}_#{Rails::VERSION::MINOR}.rb"
  end
end

#delete_non_api_initializers_if_api_option

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 521

def delete_non_api_initializers_if_api_option
  if options[:api]
    remove_file "config/initializers/content_security_policy.rb"
    remove_file "config/initializers/permissions_policy.rb"
  end
end

#delete_public_files_if_api_option

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 468

def delete_public_files_if_api_option
  if options[:api]
    remove_file "public/404.html"
    remove_file "public/422.html"
    remove_file "public/500.html"
    remove_file "public/apple-touch-icon-precomposed.png"
    remove_file "public/apple-touch-icon.png"
    remove_file "public/favicon.ico"
  end
end

#display_upgrade_guide_info

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 392

def display_upgrade_guide_info
  say "\nAfter this, check Rails upgrade guide at https://guides.rubyonrails.org/upgrading_ruby_on_rails.html for more details about upgrading your app."
end

#file(*args, &block) (private)

Define file as an alias to create_file for backwards compatibility.

[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 564

def file(*args, &block)
  create_file(*args, &block)
end

#finish_template

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 540

def finish_template
  build(:leftovers)
end

#get_builder_class (private)

[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 578

def get_builder_class
  defined?(::AppBuilder) ? ::AppBuilder : Rails::AppBuilder
end

#run_after_bundle_callbacks

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 552

def run_after_bundle_callbacks
  @after_bundle_callbacks.each(&:call)
end

#update_active_storage

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 362

def update_active_storage
  unless skip_active_storage?
    rails_command "active_storage:update", inline: true
  end
end

#update_bin_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 357

def update_bin_files
  build(:bin_when_updating)
end

#update_config_files

This method is for internal use only.
[ GitHub ]

  
# File 'railties/lib/rails/generators/rails/app/app_generator.rb', line 378

def update_config_files
  build(:config_when_updating)
end