module Sass::Images

Constants

VERSION

Public Class Methods

path_resolver() click to toggle source
# File lib/sass/images.rb, line 10
def self.path_resolver
  @path_resolver || lambda{ |path| path }
end
path_resolver=(resolver) click to toggle source
# File lib/sass/images.rb, line 6
def self.path_resolver=(resolver)
  @path_resolver = resolver
end