mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
32 lines
1 KiB
Ruby
32 lines
1 KiB
Ruby
module Bootstrap
|
|
class FrameworkNotFound < StandardError; end
|
|
|
|
# Inspired by Kaminari
|
|
def self.load!
|
|
if rails_asset_pipeline?
|
|
require 'sass-rails' # See: https://github.com/thomas-mcdonald/bootstrap-sass/pull/4
|
|
require 'bootstrap-sass/engine'
|
|
require 'bootstrap-sass/config/sass_extentions'
|
|
elsif compass?
|
|
require 'bootstrap-sass/compass_extensions'
|
|
require 'bootstrap-sass/config/sass_extentions'
|
|
base = File.join(File.dirname(__FILE__), '..')
|
|
styles = File.join(base, 'vendor', 'assets', 'stylesheets')
|
|
templates = File.join(base, 'templates')
|
|
::Compass::Frameworks.register('bootstrap', :stylesheets_directory => styles, :templates_directory => templates)
|
|
else
|
|
raise Bootstrap::FrameworkNotFound, "bootstrap-sass requires either Rails or Compass, neither of which are loaded"
|
|
end
|
|
end
|
|
|
|
private
|
|
def self.rails_asset_pipeline?
|
|
defined?(::Rails) && ::Rails.version >= '3.1.0'
|
|
end
|
|
|
|
def self.compass?
|
|
defined?(::Compass)
|
|
end
|
|
end
|
|
|
|
Bootstrap.load!
|