Module: Materialize::Sass
- Defined in:
- lib/materialize-sass.rb,
lib/materialize-sass/version.rb
Constant Summary collapse
- VERSION =
"1.0.0.1"
Class Method Summary collapse
- .assets_path ⇒ Object
-
.gem_path ⇒ Object
Paths.
- .hanami? ⇒ Boolean
- .javascripts_path ⇒ Object
-
.load! ⇒ Object
Inspired by Kaminari.
- .rails? ⇒ Boolean
-
.sprockets? ⇒ Boolean
Environment detection helpers.
- .stylesheets_path ⇒ Object
Class Method Details
.assets_path ⇒ Object
34 35 36 |
# File 'lib/materialize-sass.rb', line 34 def assets_path @assets_path ||= File.join gem_path, 'assets' end |
.gem_path ⇒ Object
Paths
22 23 24 |
# File 'lib/materialize-sass.rb', line 22 def gem_path @gem_path ||= File. '..', File.dirname(__FILE__) end |
.hanami? ⇒ Boolean
47 48 49 |
# File 'lib/materialize-sass.rb', line 47 def hanami? defined?(::Hanami) end |
.javascripts_path ⇒ Object
30 31 32 |
# File 'lib/materialize-sass.rb', line 30 def javascripts_path File.join assets_path, 'javascripts' end |
.load! ⇒ Object
Inspired by Kaminari
8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/materialize-sass.rb', line 8 def load! if rails? register_rails_engine elsif hanami? register_hanami elsif sprockets? register_sprockets elsif defined?(::Sass) && ::Sass.respond_to?(:load_paths) # The deprecated `sass` gem: ::Sass.load_paths << stylesheets_path end end |
.rails? ⇒ Boolean
43 44 45 |
# File 'lib/materialize-sass.rb', line 43 def rails? defined?(::Rails) end |
.sprockets? ⇒ Boolean
Environment detection helpers
39 40 41 |
# File 'lib/materialize-sass.rb', line 39 def sprockets? defined?(::Sprockets) end |
.stylesheets_path ⇒ Object
26 27 28 |
# File 'lib/materialize-sass.rb', line 26 def stylesheets_path File.join assets_path, 'stylesheets' end |