Class: SpreeRelatedProducts::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject

def add_stylesheets

inject_into_file "app/assets/stylesheets/store/all.css", " *= require store/spree_wishlist\n", :before => /\*\//, :verbose => true

end



13
14
15
# File 'lib/generators/spree_related_products/install/install_generator.rb', line 13

def add_migrations
  run 'rake railties:install:migrations FROM=spree_related_products'
end

#run_migrationsObject



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

def run_migrations
   res = ask "Would you like to run the migrations now? [Y/n]"
   if res == "" || res.downcase == "y"
     run 'rake db:migrate'
   else
     puts "Skiping rake db:migrate, don't forget to run it!"
   end
end