Module: Bootstrap

Defined in:
lib/bootstrap-sass.rb,
lib/bootstrap-sass/engine.rb

Defined Under Namespace

Modules: Rails Classes: FrameworkNotFound

Class Method Summary collapse

Class Method Details

.load!Object

Inspired by Kaminari



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/bootstrap-sass.rb', line 5

def self.load!
  if compass? && asset_pipeline?
    register_compass_extension
    register_rails_engine
  elsif compass?
    # Only require compass extension if a standalone project
    require 'bootstrap-sass/compass_functions'
    register_compass_extension
  elsif asset_pipeline?
    require 'sass-rails' # See: https://github.com/thomas-mcdonald/bootstrap-sass/pull/4
    register_rails_engine
    require 'bootstrap-sass/rails_functions'
  else
    raise Bootstrap::FrameworkNotFound, "bootstrap-sass requires either Rails > 3.1 or Compass, neither of which are loaded"
  end
end