fleximage 1.0.2 → 1.0.3
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/VERSION +1 -1
- data/fleximage.gemspec +2 -2
- data/lib/fleximage/model.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.3
|
data/fleximage.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{fleximage}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Alex Wayne", "Andrew White", "JJ Buckley", "Jason Lee", "Joshua Abbott", "Koji Ando", "Kouhei Sutou", "Lasse Jansen", "Lo\303\257c Guitaut", "Martin Vielsmaier", "Squeegy", "Vannoy"]
|
|
12
|
-
s.date = %q{2009-12-
|
|
12
|
+
s.date = %q{2009-12-19}
|
|
13
13
|
s.description = %q{Fleximage is a Rails plugin that tries to make image uploading and rendering
|
|
14
14
|
super easy.
|
|
15
15
|
}
|
data/lib/fleximage/model.rb
CHANGED
|
@@ -535,7 +535,7 @@ module Fleximage
|
|
|
535
535
|
format = (options[:format] || :jpg).to_s.upcase
|
|
536
536
|
@output_image.format = format
|
|
537
537
|
@output_image.strip!
|
|
538
|
-
if format
|
|
538
|
+
if format == 'JPG'
|
|
539
539
|
quality = @jpg_compression_quality || self.class.output_image_jpg_quality
|
|
540
540
|
@output_image.to_blob { self.quality = quality }
|
|
541
541
|
else
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fleximage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Wayne
|
|
@@ -20,7 +20,7 @@ autorequire:
|
|
|
20
20
|
bindir: bin
|
|
21
21
|
cert_chain: []
|
|
22
22
|
|
|
23
|
-
date: 2009-12-
|
|
23
|
+
date: 2009-12-19 00:00:00 -08:00
|
|
24
24
|
default_executable:
|
|
25
25
|
dependencies:
|
|
26
26
|
- !ruby/object:Gem::Dependency
|