spree_watermark 0.50.1 → 0.50.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.
- data/README.markdown +3 -0
- data/Versionfile +1 -0
- data/spree_watermark.gemspec +1 -1
- metadata +2 -1
data/README.markdown
CHANGED
|
@@ -12,6 +12,9 @@ Install
|
|
|
12
12
|
Add `gem 'spree_watermark'` to your gem file and place your watermark images
|
|
13
13
|
in `public/images/watermarks/`
|
|
14
14
|
|
|
15
|
+
NOTE: BY DEFAULT, THIS WILL FORCE ALL OF YOUR ASSETS INTO PNG. YOU WILL
|
|
16
|
+
NEED TO CUSTOMIZE AS BELOW TO CHANGE THIS BEHAVIOUR.
|
|
17
|
+
|
|
15
18
|
Customization
|
|
16
19
|
=============
|
|
17
20
|
|
data/Versionfile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"0.50.x" => { :branch => "master" }
|
data/spree_watermark.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
|
3
3
|
s.name = 'spree_watermark'
|
|
4
|
-
s.version = '0.50.
|
|
4
|
+
s.version = '0.50.2'
|
|
5
5
|
s.summary = 'adds watermarking to incoming product images'
|
|
6
6
|
s.description = 'Adds watermarking to incoming product images'
|
|
7
7
|
s.required_ruby_version = '>= 1.9.2'
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: spree_watermark
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.50.
|
|
5
|
+
version: 0.50.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Christopher Maujean
|
|
@@ -37,6 +37,7 @@ files:
|
|
|
37
37
|
- LICENSE
|
|
38
38
|
- README.markdown
|
|
39
39
|
- Rakefile
|
|
40
|
+
- Versionfile
|
|
40
41
|
- app/models/image_decorator.rb
|
|
41
42
|
- config/routes.rb
|
|
42
43
|
- lib/paperclip_processors/watermark.rb
|