Class: Bootstrap::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Bootstrap::Generators::InstallGenerator
- Defined in:
- lib/generators/bootstrap/install/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#add_assets ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/generators/bootstrap/install/install_generator.rb', line 10 def add_assets if File.exist?('app/assets/javascripts/application.js') insert_into_file "app/assets/javascripts/application.js", "//= require twitter/bootstrap\n", :after => "jquery_ujs\n" else copy_file "application.js", "app/assets/javascripts/application.js" end if File.exist?('app/assets/stylesheets/application.css') # Add our own require: content = File.read("app/assets/stylesheets/application.css") if content.match(/require_tree\s+\.\s*$/) # Good enough - that'll include our bootstrap_and_overrides.css.less else style_require_block = " *= require bootstrap_and_overrides\n" insert_into_file "app/assets/stylesheets/application.css", style_require_block, :after => "require_self\n" end else copy_file "application.css", "app/assets/stylesheets/application.css" end end |
#add_bootstrap ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/generators/bootstrap/install/install_generator.rb', line 33 def add_bootstrap if Rails.configuration.app_generators.rails[:javascript_engine] == :coffee copy_file "bootstrap.coffee", "app/assets/javascripts/bootstrap.js.coffee" else copy_file "bootstrap.js", "app/assets/javascripts/bootstrap.js" end copy_file "bootstrap_and_overrides.less", "app/assets/stylesheets/bootstrap_and_overrides.css.less" end |
#cleanup_legacy ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/generators/bootstrap/install/install_generator.rb', line 42 def cleanup_legacy # Remove old requires (if any) that included twitter/bootstrap directly: gsub_file("app/assets/stylesheets/application.css", %r|\s*\*=\s*twitter/bootstrap\s*\n|, "") gsub_file("app/assets/stylesheets/application.css", %r|\s*\*=\s*twitter/bootstrap_responsive\s*\n|, "") if File.exist?('app/assets/stylesheets/bootstrap_override.css.less') puts <<-EOM Warning: app/assets/stylesheets/bootstrap_override.css.less exists It should be removed, as it has been superceded by app/assets/stylesheets/bootstrap_and_overrides.css.less EOM end end |