Class: SpreePaypalApiCheckout::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#add_javascriptsObject



6
7
8
9
# File 'lib/generators/spree_paypal_api_checkout/install/install_generator.rb', line 6

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

#add_migrationsObject



21
22
23
# File 'lib/generators/spree_paypal_api_checkout/install/install_generator.rb', line 21

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

#add_stylesheetsObject



11
12
13
14
15
16
17
18
19
# File 'lib/generators/spree_paypal_api_checkout/install/install_generator.rb', line 11

def add_stylesheets
  frontend_css_file = "vendor/assets/stylesheets/spree/frontend/all.css"
  backend_css_file = "vendor/assets/stylesheets/spree/backend/all.css"

  if File.exist?(backend_css_file) && File.exist?(frontend_css_file)
    inject_into_file frontend_css_file, " *= require spree/frontend/spree_paypal_checkout\n", :before => /\*\//, :verbose => true
    inject_into_file backend_css_file, " *= require spree/backend/spree_paypal_checkout\n", :before => /\*\//, :verbose => true
  end
end

#run_migrationsObject



25
26
27
28
29
30
31
32
# File 'lib/generators/spree_paypal_api_checkout/install/install_generator.rb', line 25

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!'
  end
end