Class: FullcalendarEngine::Generators::InstallGenerator

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

Constant Summary collapse

ASSET_BASE_PATH =
'app/assets'
JS_BASE_PATH =
"#{ASSET_BASE_PATH}/javascripts"
CSS_BASE_PATH =
"#{ASSET_BASE_PATH}/stylesheets"

Instance Method Summary collapse

Instance Method Details

#add_javascriptsObject



11
12
13
14
15
16
17
# 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_migrationsObject



27
28
29
# 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_stylesheetsObject



19
20
21
22
23
24
25
# 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_migrationsObject



31
32
33
34
35
36
37
38
# 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