Module: Bootstrap::BookingSync
- Defined in:
- lib/bootstrap-bookingsync-sass.rb,
lib/bootstrap/bookingsync/engine.rb,
lib/bootstrap/bookingsync/version.rb
Defined Under Namespace
Modules: Rails
Constant Summary collapse
- VERSION =
"1.0.0"
Class Method Summary collapse
- .assets_path ⇒ Object
- .compass? ⇒ Boolean
- .fonts_path ⇒ Object
-
.gem_path ⇒ Object
Paths.
- .javascripts_path ⇒ Object
-
.load! ⇒ Object
Inspired by Kaminari.
- .rails? ⇒ Boolean
-
.sprockets? ⇒ Boolean
Environment detection helpers.
- .stylesheets_path ⇒ Object
Class Method Details
.assets_path ⇒ Object
35 36 37 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 35 def assets_path @assets_path ||= File.join gem_path, 'assets' end |
.compass? ⇒ Boolean
44 45 46 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 44 def compass? defined?(::Compass::Frameworks) end |
.fonts_path ⇒ Object
27 28 29 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 27 def fonts_path File.join assets_path, 'fonts' end |
.gem_path ⇒ Object
Paths
19 20 21 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 19 def gem_path @gem_path ||= File. '..', File.dirname(__FILE__) end |
.javascripts_path ⇒ Object
31 32 33 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 31 def javascripts_path File.join assets_path, 'javascripts' end |
.load! ⇒ Object
Inspired by Kaminari
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 6 def load! register_compass_extension if compass? if rails? register_rails_engine elsif sprockets? register_sprockets end configure_sass end |
.rails? ⇒ Boolean
48 49 50 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 48 def rails? defined?(::Rails) end |
.sprockets? ⇒ Boolean
Environment detection helpers
40 41 42 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 40 def sprockets? defined?(::Sprockets) end |
.stylesheets_path ⇒ Object
23 24 25 |
# File 'lib/bootstrap-bookingsync-sass.rb', line 23 def stylesheets_path File.join assets_path, 'stylesheets' end |