sysmocom_dhl/lib/generators/sysmocom_dhl/install/install_generator.rb

30 lines
1.0 KiB
Ruby

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