Sha256: 39a45d8862b2759384bb59c62986f675cd3f9ce9a06a8526b1fbbb766914b961
Contents?: true
Size: 1.6 KB
Versions: 2
Compression:
Stored size: 1.6 KB
Contents
# frozen_string_literal: true module Fomantic module Ui module Sass class FrameworkNotFound < StandardError; end class << self def load! if defined?(::Rails) require 'fomantic/ui/sass/engine' elsif defined?(::Compass) ::Compass::Frameworks.register('fomantic-ui', path: base, stylesheets_directory: stylesheets_path, templates_directory: templates_path) elsif defined?(::Sprockets) Sprockets.append_path(stylesheets_path) Sprockets.append_path(fonts_path) Sprockets.append_path(images_path) Sprockets.append_path(javascripts_path) end unless defined?(::Rails) || defined?(::Compass) || defined?(::Sprockets) raise Fomantic::Ui::Sass::FrameworkNotFound, 'fomantic-ui-sass requires either Rails > 3.1 or Compass, or Sprockets, none of which are loaded' end end # Paths def gem_path @gem_path ||= File.expand_path('..', File.dirname(__FILE__)) end def templates_path File.join(gem_path, 'templates') end def assets_path @assets_path ||= File.join(gem_path, 'app', 'assets') end def fonts_path File.join(assets_path, 'fonts') end def images_path File.join(assets_path, 'images') end def javascripts_path File.join(assets_path, 'javascripts') end def stylesheets_path File.join(assets_path, 'stylesheets') end end end end end Fomantic::Ui::Sass.load!
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fomantic-ui-sass-2.9.3.2 | lib/fomantic-ui-sass.rb |
fomantic-ui-sass-2.9.3.1 | lib/fomantic-ui-sass.rb |