class Jquery::Generators::InstallGenerator
def copy_jquery
def copy_jquery say_status("copying", "jQuery (#{@@jquery_version})", :green) copy_file "jquery.js", "public/javascripts/jquery.js" copy_file "jquery.min.js", "public/javascripts/jquery.min.js" end
def copy_jquery_ui
def copy_jquery_ui if options.ui? say_status("copying", "jQuery UI (#{@@jquery_ui_version})", :green) copy_file "jquery-ui.js", "public/javascripts/jquery-ui.js" copy_file "jquery-ui.min.js", "public/javascripts/jquery-ui.min.js" end end
def copy_ujs_driver
def copy_ujs_driver say_status("copying", "jQuery UJS adapter (#{@@jquery_ujs_version[0..5]})", :green) copy_file "jquery_ujs.js", "public/javascripts/jquery_ujs.js" end
def remove_prototype
def remove_prototype PROTOTYPE_JS.each do |name| remove_file "public/javascripts/#{name}.js" end end