class Judge::Generators::InstallGenerator
Public Instance Methods
exec()
click to toggle source
# File lib/generators/judge/install/install_generator.rb, line 23 def exec unless !::Rails.application.config.assets.enabled say_status("deprecated", "You don't need to use this generator as your app is running on Rails >= 3.1 with the asset pipeline enabled") return end say_status("copying", "judge.js", :green) copy_file("app/assets/javascripts/judge.js", "#{path}/judge.js") if options.underscore? say_status("copying", "underscore.js", :green) copy_file("vendor/assets/javascripts/underscore.js", "#{path}/underscore.js") end if options.json2? say_status("copying", "json2.js", :green) copy_file("vendor/assets/javascripts/json2.js", "#{path}/json2.js") end end