Class: SolidusPrototypes::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/solidus_prototypes/install/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#add_javascriptsObject



10
11
12
13
14
15
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 10

def add_javascripts
  append_file(
    'vendor/assets/javascripts/spree/backend/all.js',
    "//= require spree/backend/solidus_prototypes\n"
  )
end

#add_migrationsObject



26
27
28
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 26

def add_migrations
  run 'bundle exec rake railties:install:migrations FROM=solidus_prototypes'
end

#add_stylesheetsObject



17
18
19
20
21
22
23
24
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 17

def add_stylesheets
  inject_into_file(
    'vendor/assets/stylesheets/spree/backend/all.css',
    " *= require spree/backend/solidus_prototypes\n",
    before: %r{\*/},
    verbose: true
  )
end

#run_migrationsObject



30
31
32
33
34
35
36
37
38
39
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 30

def run_migrations
  run_migrations = options[:auto_run_migrations] || ['', 'y', 'Y'].include?(
    ask('Would you like to run the migrations now? [Y/n]')
  )
  if run_migrations
    run 'bundle exec rake db:migrate'
  else
    puts 'Skipping rake db:migrate, don\'t forget to run it!' # rubocop:disable Rails/Output
  end
end