Class: SpreeFaqs::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject



10
11
12
# File 'lib/generators/spree_faqs/install/install_generator.rb', line 10

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

#add_stylesheetsObject



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

def add_stylesheets
  inject_into_file 'app/assets/stylesheets/store/all.css', " *= require store/spree_grid_faq\n", :before => /\*\//, :verbose => true
end

#run_migrationsObject



14
15
16
17
18
19
20
21
# File 'lib/generators/spree_faqs/install/install_generator.rb', line 14

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 'Skiping rake db:migrate, don\'t forget to run it!'
   end
end