class FullcalendarEngine::Generators::InstallGenerator

Constants

ASSET_BASE_PATH
CSS_BASE_PATH
JS_BASE_PATH

Public Instance Methods

add_javascripts() click to toggle source
# File lib/generators/fullcalendar_engine/install/install_generator.rb, line 11
def add_javascripts
  if File.exist?("#{JS_BASE_PATH}/application.js")
    append_file "#{JS_BASE_PATH}/application.js", "//= require fullcalendar_engine/application\n"
  elsif File.exist?("#{JS_BASE_PATH}/application.js.coffee")
    append_file "#{JS_BASE_PATH}/application.js.coffee", "//= require fullcalendar_engine/application\n"
  end
end
add_migrations() click to toggle source
# File lib/generators/fullcalendar_engine/install/install_generator.rb, line 27
def add_migrations
  run 'bundle exec rake railties:install:migrations FROM=fullcalendar_engine'
end
add_stylesheets() click to toggle source
# File lib/generators/fullcalendar_engine/install/install_generator.rb, line 19
def add_stylesheets
  if File.exist?("#{CSS_BASE_PATH}/application.css")
    inject_into_file "#{CSS_BASE_PATH}/application.css", " *= require fullcalendar_engine/application\n", :before => /\*\//, :verbose => true
  elsif File.exist?("#{CSS_BASE_PATH}/application.css.scss")
    inject_into_file "#{CSS_BASE_PATH}/application.css.scss", " *= require fullcalendar_engine/application\n", :before => /\*\//, :verbose => true
  end
end
run_migrations() click to toggle source
# File lib/generators/fullcalendar_engine/install/install_generator.rb, line 31
def run_migrations
  run_migrations = options[:auto_run_migrations] || ['', 'y', 'Y'].include?(ask 'Would you like to run the migrations now? [Y/n]')
  if run_migrations
    run 'bundle exec rake db:migrate'
  else
    puts 'Skipping rake db:migrate, don\'t forget to run it!'
  end
end