module SysmocomStock module Generators class InstallGenerator < Rails::Generators::Base def add_javascripts append_file 'app/assets/javascripts/store/all.js', "//= require store/sysmocom_stock\n" append_file 'app/assets/javascripts/admin/all.js', "//= require admin/sysmocom_stock\n" end def add_stylesheets inject_into_file 'app/assets/stylesheets/store/all.css', " *= require store/sysmocom_stock\n", :before => /\*\//, :verbose => true inject_into_file 'app/assets/stylesheets/admin/all.css', " *= require admin/sysmocom_stock\n", :before => /\*\//, :verbose => true end def add_migrations run 'bundle exec rake railties:install:migrations FROM=sysmocom_stock' end 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 end end end