Class: ViewAssets::Packager::CssPackager

Inherits:
Packager
  • Object
show all
Defined in:
lib/view_assets/packager/packager.rb

Constant Summary collapse

CSS_FINDER =
ViewAssets::Finder::CssFinder.new
COMPRESSOR =

COMPRESSOR = YUI::CssCompressor.new

Compressor.new

Instance Method Summary collapse

Methods inherited from Packager

#package, #root

Instance Method Details

#actions_mapObject



141
142
143
# File 'lib/view_assets/packager/packager.rb', line 141

def actions_map
  CssActionsMap.new
end

#asset_extObject



150
151
152
# File 'lib/view_assets/packager/packager.rb', line 150

def asset_ext
  CSS_EXT
end

#asset_pathObject



161
162
163
# File 'lib/view_assets/packager/packager.rb', line 161

def asset_path
  CSS_PATH
end

#compressorObject



157
158
159
# File 'lib/view_assets/packager/packager.rb', line 157

def compressor
  COMPRESSOR
end

#finderObject



146
147
148
# File 'lib/view_assets/packager/packager.rb', line 146

def finder
  CSS_FINDER
end