Class: Spree::DummyGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Spree::DummyGenerator
- Defined in:
- lib/generators/spree/dummy/dummy_generator.rb
Constant Summary collapse
- SPREE_GEMS =
%w(spree_admin spree_storefront spree_api spree_emails).freeze
Instance Attribute Summary collapse
-
#database ⇒ Object
readonly
Returns the value of attribute database.
-
#lib_name ⇒ Object
readonly
Returns the value of attribute lib_name.
Class Method Summary collapse
Instance Method Summary collapse
- #clean_up ⇒ Object
- #generate_test_dummy ⇒ Object
- #test_dummy_config ⇒ Object
- #test_dummy_inject_extension_requirements ⇒ Object
Instance Attribute Details
#database ⇒ Object (readonly)
Returns the value of attribute database.
90 91 92 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 90 def database @database end |
#lib_name ⇒ Object (readonly)
Returns the value of attribute lib_name.
89 90 91 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 89 def lib_name @lib_name end |
Class Method Details
.source_paths ⇒ Object
15 16 17 18 19 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 15 def self.source_paths paths = superclass.source_paths paths << File.('templates', __dir__) paths.flatten end |
Instance Method Details
#clean_up ⇒ Object
21 22 23 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 21 def clean_up remove_directory_if_exists(dummy_path) end |
#generate_test_dummy ⇒ Object
25 26 27 28 29 30 31 32 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 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 25 def generate_test_dummy puts 'Generating dummy Rails application...' args = [File.(dummy_path, destination_root)] # Database args << "--database=#{options[:database].presence || 'sqlite3'}" # Skip options args << '--force' args << '--skip-bundle' args << '--skip-git' args << '--skip-keeps' args << '--skip-rc' args << '--skip-spring' args << '--skip-test' args << '--skip-bootsnap' args << '--skip-docker' args << '--skip-rubocop' args << '--skip-brakeman' args << '--skip-ci' args << '--skip-kamal' args << '--skip-devcontainer' args << '--skip-solid' args << '--skip-thruster' args << '--skip-bundler-audit' args << '--skip-dev-gems' args << '--skip-action-mailbox' args << '--skip-jbuilder' # API mode (implies skip-asset-pipeline, skip-javascript, skip-hotwire) args << '--api' if [:api] Rails::Generators.invoke('app', args) inject_yaml_permitted_classes end |
#test_dummy_config ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 62 def test_dummy_config @lib_name = [:lib_name] @database = [:database] template 'rails/database.yml', "#{dummy_path}/config/database.yml", force: true template 'rails/boot.rb', "#{dummy_path}/config/boot.rb", force: true template 'rails/application.rb', "#{dummy_path}/config/application.rb", force: true template 'rails/routes.rb', "#{dummy_path}/config/routes.rb", force: true template 'rails/test.rb', "#{dummy_path}/config/environments/test.rb", force: true template 'initializers/devise.rb', "#{dummy_path}/config/initializers/devise.rb", force: true template "app/assets/config/manifest.js", "#{dummy_path}/app/assets/config/manifest.js", force: true unless [:api] end |
#test_dummy_inject_extension_requirements ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/generators/spree/dummy/dummy_generator.rb', line 75 def test_dummy_inject_extension_requirements if DummyGeneratorHelper.inject_extension_requirements SPREE_GEMS.each do |gem| begin require "#{gem}" inside dummy_path do inject_require_for(gem) end rescue StandardError, LoadError end end end end |