Sha256: 190442c9b1ce6f9ac4015dd33857139e2323e4b4a258571b4361d85f709a6afe
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
module Compass class Sprites < Sass::Importers::Base attr_accessor :name, :path def self.path_and_name(uri) if uri =~ %r{((.+/)?(.+))/(.+?)\.png} [$1, $3, $4] end end def self.discover_sprites(uri) self.load_map(uri, options).files end def self.sprite_name(file) File.basename(file, '.png') end def self.load_map(uri, options) Compass.quick_cache("spritemap:#{uri}", 5) do SpriteMap.new(uri, options) end end # Called by the sass engine to build a new SpriteMap def find(uri, options) if uri =~ /\.png$/ map = Compass::Sprites.load_map(uri, options) self.path, self.name = map.path, map.name return map.sass_engine end end # Called by the sass engine to identify the SpriteMap def self.key(uri, options={}) [self.class.name + ":" + File.dirname(File.expand_path(uri)), File.basename(uri)] end def self.mtime(uri, options) Compass.quick_cache("mtime:#{uri}") do map = Compass::Sprites.load_map(uri, options) map.files.inject(Time.at(0)) do |max_time, file| (t = File.mtime(file)) > max_time ? t : max_time end end end def to_s "" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
compass-0.11.beta.5 | lib/compass/sass_extensions/sprites/sprites.rb |