rack-sprockets 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
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 = true
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 - uses YUI Compressor if available or will remove extraneous whitespace if not.
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
 
@@ -1,8 +1,8 @@
1
1
  module RackSprockets
2
2
  module Version
3
3
 
4
- MAJOR = 0
5
- MINOR = 1
4
+ MAJOR = 1
5
+ MINOR = 0
6
6
  TINY = 0
7
7
 
8
8
  def self.to_s # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-sprockets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kelly Redding