Module: Middleman::Sass::Functions

Defined in:
middleman-core/lib/middleman-core/renderers/sass_functions.rb

Instance Method Summary collapse

Instance Method Details

#asset_path(_source, _options) ⇒ Object


6
7
8
# File 'middleman-core/lib/middleman-core/renderers/sass_functions.rb', line 6

def asset_path(_source, _options)
  # current_resource
end

#font_path(source, options_hash = ::Middleman::EMPTY_HASH) ⇒ Object

Using Middleman::Util#asset_path, return the full path for the given +source+ as a Sass String. This supports keyword arguments that mirror the +options+.

=== Examples

src: url(font-path("font.ttf")); // src: url("/assets/font.ttf"); src: url(font-path("font.ttf", $digest: true)); // src: url("/assets/font-27a8f1f96afd8d4c67a59eb9447f45bd.ttf");


58
59
60
61
# File 'middleman-core/lib/middleman-core/renderers/sass_functions.rb', line 58

def font_path(source, options_hash = ::Middleman::EMPTY_HASH)
  p = ::Middleman::Util.asset_path(middleman_context, :fonts, source.value, map_options(options_hash))
  ::SassC::Script::Value::String.new p.to_s, :string
end

#font_url(source, options_hash = ::Middleman::EMPTY_HASH) ⇒ Object

Using Middleman::Util#asset_path, return the url CSS for the given +source+ as a Sass String. This supports keyword arguments that mirror the +options+.

=== Examples

src: font-url("font.ttf"); // src: url("/assets/font.ttf"); src: font-url("image.jpg", $digest: true); // src: url("/assets/font-27a8f1f96afd8d4c67a59eb9447f45bd.ttf");


72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'middleman-core/lib/middleman-core/renderers/sass_functions.rb', line 72

def font_url(source, options_hash = ::Middleman::EMPTY_HASH)
  options = options_hash.dup

  # Work with the Compass #font_url API
  if options.respond_to? :value
    case options.value
    when true
      return font_path source
    else
      options = {}
    end
  end
  ::SassC::Script::Value::String.new "url(#{font_path(source, options)})"
end

#image_path(source, options_hash = ::Middleman::EMPTY_HASH) ⇒ Object

Using Middleman::Util#asset_path, return the full path for the given +source+ as a Sass String. This supports keyword arguments that mirror the +options+.

=== Examples

background: url(image-path("image.jpg")); // background: url("/assets/image.jpg"); background: url(image-path("image.jpg", $digest: true)); // background: url("/assets/image-27a8f1f96afd8d4c67a59eb9447f45bd.jpg");


19
20
21
22
# File 'middleman-core/lib/middleman-core/renderers/sass_functions.rb', line 19

def image_path(source, options_hash = ::Middleman::EMPTY_HASH)
  p = ::Middleman::Util.asset_path(middleman_context, :images, source.value, map_options(options_hash))
  ::SassC::Script::Value::String.new p.to_s, :string
end

#image_url(source, options_hash = ::Middleman::EMPTY_HASH, _cache_buster = nil) ⇒ Object

Using Middleman::Util#asset_path, return the url CSS for the given +source+ as a Sass String. This supports keyword arguments that mirror the +options+.

=== Examples

background: image-url("image.jpg"); // background: url("/assets/image.jpg"); background: image-url("image.jpg", $digest: true); // background: url("/assets/image-27a8f1f96afd8d4c67a59eb9447f45bd.jpg");


33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'middleman-core/lib/middleman-core/renderers/sass_functions.rb', line 33

def image_url(source, options_hash = ::Middleman::EMPTY_HASH, _cache_buster = nil)
  options = options_hash.dup

  # Work with the Compass #image_url API
  if options.respond_to? :value
    case options.value
    when true
      return image_path source
    else
      options = {}
    end
  end

  ::SassC::Script::Value::String.new "url(#{image_path(source, options)})"
end