Class: Keymaster::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Keymaster::Generators::InstallGenerator
- Defined in:
- lib/generators/keymaster/install/install_generator.rb,
lib/generators/keymaster/install/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#copy_javascript ⇒ Object
11 12 13 14 |
# File 'lib/generators/keymaster/install/install_generator.rb', line 11 def copy_javascript say_status("copying", "Keymaster JS", :green) copy_file "javascripts/keymaster.js", "public/javascripts/keymaster.js" end |
#do_nothing ⇒ Object
24 25 26 27 28 29 30 31 |
# File 'lib/generators/keymaster/install/install_generator.rb', line 24 def do_nothing say_status("deprecated", "You are using Rails 3.1 with the asset pipeline enabled, so this generator is not needed.") say_status("", "The necessary files are already in your asset pipeline.") say_status("", "Just add `//= require keymaster` to your app/assets/javascripts/application.js") say_status("", "If you upgraded your app from Rails 3.0 and still have keymaster.js in your public assets folders, be sure to remove them.") say_status("", "If you do not want the asset pipeline enabled, you may turn it off in application.rb and re-run this generator.") # ok, nothing end |