Class: Rails::Generators::AppBase
- Includes:
- AppName
- Defined in:
- lib/rails/generators/app_base.rb
Overview
:nodoc:
Direct Known Subclasses
Defined Under Namespace
Classes: GemfileEntry
Constant Summary collapse
- NODE_LTS_VERSION =
"20.11.1"
- BUN_VERSION =
"1.0.1"
- JAVASCRIPT_OPTIONS =
%w( importmap bun webpack esbuild rollup )
- CSS_OPTIONS =
%w( tailwind bootstrap bulma postcss sass )
- ASSET_PIPELINE_OPTIONS =
%w( none sprockets propshaft )
Constants included from AppName
Rails::Generators::AppName::RESERVED_NAMES
Instance Attribute Summary collapse
-
#rails_template ⇒ Object
Returns the value of attribute rails_template.
Class Method Summary collapse
- .add_shared_options_for(name) ⇒ Object
-
.edge_branch ⇒ Object
:nodoc:.
- .strict_args_position ⇒ Object
Instance Method Summary collapse
-
#initialize(positional_argv, option_argv) ⇒ AppBase
constructor
A new instance of AppBase.
Methods inherited from Base
base_root, class_option, default_source_root, desc, exit_on_failure?, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #environment, #gem, #gem_group, #generate, #git, #github, #initializer, #lib, #rails_command, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
#initialize(positional_argv, option_argv) ⇒ AppBase
Returns a new instance of AppBase.
137 138 139 140 141 |
# File 'lib/rails/generators/app_base.rb', line 137 def initialize(positional_argv, option_argv, *) @argv = [*positional_argv, *option_argv] @gem_filter = lambda { |gem| true } super end |
Instance Attribute Details
#rails_template ⇒ Object
Returns the value of attribute rails_template.
24 25 26 |
# File 'lib/rails/generators/app_base.rb', line 24 def rails_template @rails_template end |
Class Method Details
.add_shared_options_for(name) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/rails/generators/app_base.rb', line 33 def self.(name) class_option :name, type: :string, aliases: "-n", desc: "Name of the app" class_option :template, type: :string, aliases: "-m", desc: "Path to some #{name} template (can be a filesystem path or URL)" class_option :database, type: :string, aliases: "-d", default: "sqlite3", enum: Database::DATABASES, desc: "Preconfigure for selected database" class_option :skip_git, type: :boolean, aliases: "-G", default: nil, desc: "Skip git init, .gitignore and .gitattributes" class_option :skip_docker, type: :boolean, default: nil, desc: "Skip Dockerfile, .dockerignore and bin/docker-entrypoint" class_option :skip_keeps, type: :boolean, default: nil, desc: "Skip source control .keep files" class_option :skip_action_mailer, type: :boolean, aliases: "-M", default: nil, desc: "Skip Action Mailer files" class_option :skip_action_mailbox, type: :boolean, default: nil, desc: "Skip Action Mailbox gem" class_option :skip_action_text, type: :boolean, default: nil, desc: "Skip Action Text gem" class_option :skip_active_record, type: :boolean, aliases: "-O", default: nil, desc: "Skip Active Record files" class_option :skip_active_job, type: :boolean, default: nil, desc: "Skip Active Job" class_option :skip_active_storage, type: :boolean, default: nil, desc: "Skip Active Storage files" class_option :skip_action_cable, type: :boolean, aliases: "-C", default: nil, desc: "Skip Action Cable files" class_option :skip_asset_pipeline, type: :boolean, aliases: "-A", default: nil class_option :asset_pipeline, type: :string, aliases: "-a", default: "sprockets", enum: ASSET_PIPELINE_OPTIONS, desc: "Choose your asset pipeline" class_option :skip_javascript, type: :boolean, aliases: ["-J", "--skip-js"], default: (true if name == "plugin"), desc: "Skip JavaScript files" class_option :skip_hotwire, type: :boolean, default: nil, desc: "Skip Hotwire integration" class_option :skip_jbuilder, type: :boolean, default: nil, desc: "Skip jbuilder gem" class_option :skip_test, type: :boolean, aliases: "-T", default: nil, desc: "Skip test files" class_option :skip_system_test, type: :boolean, default: nil, desc: "Skip system test files" class_option :skip_bootsnap, type: :boolean, default: nil, desc: "Skip bootsnap gem" class_option :skip_dev_gems, type: :boolean, default: nil, desc: "Skip development gems (e.g., web-console)" class_option :skip_rubocop, type: :boolean, default: nil, desc: "Skip RuboCop setup" class_option :skip_brakeman, type: :boolean, default: nil, desc: "Skip brakeman setup" class_option :skip_ci, type: :boolean, default: nil, desc: "Skip GitHub CI files" class_option :dev, type: :boolean, default: nil, desc: "Set up the #{name} with Gemfile pointing to your Rails checkout" class_option :devcontainer, type: :boolean, default: false, desc: "Generate devcontainer files" class_option :edge, type: :boolean, default: nil, desc: "Set up the #{name} with a Gemfile pointing to the #{edge_branch} branch on the Rails repository" class_option :main, type: :boolean, default: nil, aliases: "--master", desc: "Set up the #{name} with Gemfile pointing to Rails repository main branch" class_option :rc, type: :string, default: nil, desc: "Path to file containing extra configuration options for rails command" class_option :no_rc, type: :boolean, default: nil, desc: "Skip loading of extra configuration options from .railsrc file" class_option :help, type: :boolean, aliases: "-h", group: :rails, desc: "Show this help message and quit" end |
.edge_branch ⇒ Object
:nodoc:
133 134 135 |
# File 'lib/rails/generators/app_base.rb', line 133 def self.edge_branch # :nodoc: Rails.gem_version.prerelease? ? "main" : [*Rails.gem_version.segments.first(2), "stable"].join("-") end |
.strict_args_position ⇒ Object
29 30 31 |
# File 'lib/rails/generators/app_base.rb', line 29 def self.strict_args_position false end |