sprockets-image_compressor 0.2.1 → 0.2.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +1 -0
- data/lib/sprockets/image_compressor/railtie.rb +1 -1
- data/lib/sprockets/image_compressor/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7aadb950895a7d44df279f0f3509bd26bab0a36
|
|
4
|
+
data.tar.gz: 7a61daf7f0f622c67bffee7062cf98256e8074e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39478d5ec0f7ab524b3fb134bfe4195dee2ee84e747cad9f194d3a6a2087a4cc82e5982fb65e654d9489ab8997966a661b1eb2f4561bf1cec0a88986c5386e68
|
|
7
|
+
data.tar.gz: e8cdc0042c6d0a360c607440c8a41d3b3d7e9d427e933e515058099532229e4dedb745e17629e588ac1be396a33357936af162a9f0a4ef76aaf3c11e2fd5b3c2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
0.2.2 (09/20/2013)
|
|
2
|
+
-------------------------
|
|
3
|
+
|
|
4
|
+
* Bugfix: Work on Rails 4. Thanks, @dkubb!
|
|
5
|
+
|
|
6
|
+
0.2.1 (07/20/2012)
|
|
7
|
+
-------------------------
|
|
8
|
+
|
|
9
|
+
* Bugfix: Work with Sprockets::Rails. Thanks, @florentmorin!
|
|
10
|
+
* Bugfix: Include license in gemspec. Thanks, @sunny!
|
|
11
|
+
|
|
1
12
|
0.2.0 (01/28/2012)
|
|
2
13
|
-------------------------
|
|
3
14
|
|
data/README.md
CHANGED
|
@@ -25,6 +25,7 @@ If the environment doesn't have pngcrush and/or jpegoptim installed, the gem wil
|
|
|
25
25
|
|
|
26
26
|
* @nhogle for help with compiling and packaging the jpegoptim and pngcrush binaries
|
|
27
27
|
* @florentmorin for compatibility with sprockets-rails
|
|
28
|
+
* @dkubb for compatibility with Rails 4
|
|
28
29
|
|
|
29
30
|
## License
|
|
30
31
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Sprockets
|
|
2
2
|
module ImageCompressor
|
|
3
|
-
class Railtie < ::Rails::Engine
|
|
3
|
+
class Railtie < ::Rails.version < '4.0' ? ::Rails::Engine : ::Rails::Railtie
|
|
4
4
|
initializer :setup_image_compressors do |app|
|
|
5
5
|
Integration.setup app.assets if app.config.assets.compress
|
|
6
6
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sprockets-image_compressor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Micah Geisel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sprockets
|