Class: SpreeIfmb::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/spree_ifmb/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_ifmb\n", :before => /\*\//, :verbose => true
inject_into_file 'app/assets/stylesheets/admin/all.css', " *= require admin/spree_ifmb\n", :before => /\*\//, :verbose => true

end



15
16
17
# File 'lib/generators/spree_ifmb/install/install_generator.rb', line 15

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

#run_migrationsObject



19
20
21
22
23
24
25
26
# File 'lib/generators/spree_ifmb/install/install_generator.rb', line 19

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