Class: ViewAssets::Packager::CssPackager
- 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
- #actions_map ⇒ Object
- #asset_ext ⇒ Object
- #asset_path ⇒ Object
- #compressor ⇒ Object
- #finder ⇒ Object
Methods inherited from Packager
Instance Method Details
#actions_map ⇒ Object
141 142 143 |
# File 'lib/view_assets/packager/packager.rb', line 141 def actions_map CssActionsMap.new end |
#asset_ext ⇒ Object
150 151 152 |
# File 'lib/view_assets/packager/packager.rb', line 150 def asset_ext CSS_EXT end |
#asset_path ⇒ Object
161 162 163 |
# File 'lib/view_assets/packager/packager.rb', line 161 def asset_path CSS_PATH end |
#compressor ⇒ Object
157 158 159 |
# File 'lib/view_assets/packager/packager.rb', line 157 def compressor COMPRESSOR end |
#finder ⇒ Object
146 147 148 |
# File 'lib/view_assets/packager/packager.rb', line 146 def finder CSS_FINDER end |