rack-sprockets 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +4 -2
- data/lib/rack/sprockets/version.rb +2 -2
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -22,7 +22,7 @@ and use as follows:
|
|
|
22
22
|
|
|
23
23
|
# optional - use as necessary
|
|
24
24
|
Rack::Sprockets.configure do |config|
|
|
25
|
-
config.compress =
|
|
25
|
+
config.compress = :yui
|
|
26
26
|
# other configs ...
|
|
27
27
|
end
|
|
28
28
|
|
|
@@ -76,7 +76,9 @@ These are similar to sprockets options and, where applicable, map directly to a
|
|
|
76
76
|
- Whether or not to cache the concatenation output to a corresponding static file.
|
|
77
77
|
|
|
78
78
|
* .*compress* [false]
|
|
79
|
-
- Whether or not to apply compression to the concatenation output
|
|
79
|
+
- Whether or not to apply compression to the concatenation output
|
|
80
|
+
- :*yui* - use YUI Compressor (gem install yui-compressor)
|
|
81
|
+
- :*whitespace* - remove extraneous whitespace only.
|
|
80
82
|
|
|
81
83
|
== Links
|
|
82
84
|
|