Sha256: 2d5a48fbef2b5c341e3957f14b6fbed00b9c9e4dc4511c7892a01d1c5e98a895

Contents?: true

Size: 1.25 KB

Versions: 12

Compression:

Stored size: 1.25 KB

Contents

module Bootstrap
  class FrameworkNotFound < StandardError; end

  # Inspired by Kaminari
  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

  private
  def self.asset_pipeline?
    defined?(::Rails) && ::Rails.version >= '3.1.0'
  end

  def self.compass?
    defined?(::Compass)
  end

  def self.register_compass_extension
    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)
  end

  def self.register_rails_engine
    require 'bootstrap-sass/engine'
  end
end

Bootstrap.load!

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
bootstrap-sass-2.2.2.0 lib/bootstrap-sass.rb
bootstrap-sass-2.2.1.1 lib/bootstrap-sass.rb
bootstrap-sass-2.2.1.0 lib/bootstrap-sass.rb
bootstrap-sass-2.1.1.0 lib/bootstrap-sass.rb
bootstrap-sass-2.1.0.1 lib/bootstrap-sass.rb
bootstrap-sass-2.1.0.0 lib/bootstrap-sass.rb
bootstrap-sass-2.0.4.2 lib/bootstrap-sass.rb
bootstrap-sass-2.0.4.1 lib/bootstrap-sass.rb
bootstrap-sass-keppy-0.0.0 lib/bootstrap-sass.rb
bootstrap-sass-2.0.4.0 lib/bootstrap-sass.rb
bootstrap-sass-2.0.3.1 lib/bootstrap-sass.rb
bootstrap-sass-2.0.3 lib/bootstrap-sass.rb