pothoven-attachment_fu 3.2.16 → 3.2.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Y2E4OTFiMjdjMTZkZGRhMjRhMmM4M2I3OWM0YjFiNGIzYzNhOWIyZQ==
5
+ data.tar.gz: !binary |-
6
+ M2NmMDQ0ZjI1NDRiMDg5YjY5NTZhNzZjOGUwZmJlMDc5YmY4ODkwMQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ Zjc1YzZlZWIyM2NmYTkxMTg0OGY2YjcyODFiOGMwMjNjOWE2MTgzMmQ3NDMx
10
+ OGI1ZDg5MDdkMTgzOTk1OTQyMjZkODZmZWY2YWNjN2ZjNjk3ZTc1ZTNmNWFi
11
+ MjI2NDY3NmJjNTRkYjQ5N2M4MmJhNWVlOGE2YWY5NmQ4MWIyMDI=
12
+ data.tar.gz: !binary |-
13
+ YzlmYmM3NDI1MzU5NTUwOTE1M2EzYTNiNWM5NTE3M2E0ZTE1YzI5M2EzNDA1
14
+ MjZjZGFkMzI2NWQ2OTM4ZDBjZWNhODk1MzNiMGE5ODRiYWVlOWEyMzc2MDc3
15
+ ODkzMGFlMzk5MTlkMGFmZTU4ODhhYjU2YjY4ODI4MTAxYmZhYjk=
data/CHANGELOG CHANGED
@@ -1,7 +1,13 @@
1
+ * Apr 11, 2016 *
2
+ * Pull in changes from brauliobo to fix RMagick deprication warning *
3
+
1
4
  * Jul 15, 2015 *
2
5
  * Pull in changes from brauliobo to fix protected_attributes for Rails 4.2 *
3
6
  * Acknowlegement also to malmckay who provided another elegant fix to the protected_attributes problem and I want to thank him for it, but I had to pick 1 *
4
7
 
8
+ * Apr 27, 2015 *
9
+ * Pull in changes from benstein to gracefully handle nil filename
10
+
5
11
  * Jan 27, 2015 *
6
12
  * Pull in changes from bacrossland to fix test suite *
7
13
 
@@ -1,4 +1,12 @@
1
- require 'RMagick'
1
+ begin
2
+ require "rmagick"
3
+ rescue LoadError
4
+ require "RMagick"
5
+ rescue LoadError => e
6
+ e.message << " (You may need to install the rmagick gem)"
7
+ raise e
8
+ end
9
+
2
10
  module Technoweenie # :nodoc:
3
11
  module AttachmentFu # :nodoc:
4
12
  module Processors
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pothoven-attachment_fu
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.16
5
- prerelease:
4
+ version: 3.2.17
6
5
  platform: ruby
7
6
  authors:
8
7
  - Rick Olson
@@ -10,7 +9,7 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2015-07-15 00:00:00.000000000 Z
12
+ date: 2016-06-11 00:00:00.000000000 Z
14
13
  dependencies: []
15
14
  description: This is a fork of Rick Olson's attachment_fu adding Ruby 1.9 and Rails
16
15
  3.2 and Rails 4 support as well as some other enhancements.
@@ -20,32 +19,33 @@ extensions: []
20
19
  extra_rdoc_files:
21
20
  - README.rdoc
22
21
  files:
22
+ - CHANGELOG
23
+ - LICENSE
24
+ - README.rdoc
25
+ - amazon_s3.yml.tpl
23
26
  - lib/geometry.rb
24
27
  - lib/pothoven-attachment_fu.rb
25
28
  - lib/technoweenie/attachment_fu.rb
29
+ - lib/technoweenie/attachment_fu/backends/cloud_file_backend.rb
30
+ - lib/technoweenie/attachment_fu/backends/db_file_backend.rb
31
+ - lib/technoweenie/attachment_fu/backends/file_system_backend.rb
32
+ - lib/technoweenie/attachment_fu/backends/s3_backend.rb
33
+ - lib/technoweenie/attachment_fu/processors/core_image_processor.rb
26
34
  - lib/technoweenie/attachment_fu/processors/gd2_processor.rb
35
+ - lib/technoweenie/attachment_fu/processors/image_science_processor.rb
27
36
  - lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb
28
37
  - lib/technoweenie/attachment_fu/processors/rmagick_processor.rb
29
- - lib/technoweenie/attachment_fu/processors/core_image_processor.rb
30
- - lib/technoweenie/attachment_fu/processors/image_science_processor.rb
31
- - lib/technoweenie/attachment_fu/backends/s3_backend.rb
32
- - lib/technoweenie/attachment_fu/backends/file_system_backend.rb
33
- - lib/technoweenie/attachment_fu/backends/db_file_backend.rb
34
- - lib/technoweenie/attachment_fu/backends/cloud_file_backend.rb
35
- - vendor/red_artisan/core_image/processor.rb
38
+ - rackspace_cloudfiles.yml.tpl
36
39
  - vendor/red_artisan/core_image/filters/color.rb
37
- - vendor/red_artisan/core_image/filters/quality.rb
38
- - vendor/red_artisan/core_image/filters/watermark.rb
39
- - vendor/red_artisan/core_image/filters/scale.rb
40
40
  - vendor/red_artisan/core_image/filters/effects.rb
41
41
  - vendor/red_artisan/core_image/filters/perspective.rb
42
- - CHANGELOG
43
- - LICENSE
44
- - README.rdoc
45
- - amazon_s3.yml.tpl
46
- - rackspace_cloudfiles.yml.tpl
42
+ - vendor/red_artisan/core_image/filters/quality.rb
43
+ - vendor/red_artisan/core_image/filters/scale.rb
44
+ - vendor/red_artisan/core_image/filters/watermark.rb
45
+ - vendor/red_artisan/core_image/processor.rb
47
46
  homepage: http://github.com/pothoven/attachment_fu
48
47
  licenses: []
48
+ metadata: {}
49
49
  post_install_message:
50
50
  rdoc_options:
51
51
  - --inline-source
@@ -53,20 +53,18 @@ rdoc_options:
53
53
  require_paths:
54
54
  - lib
55
55
  required_ruby_version: !ruby/object:Gem::Requirement
56
- none: false
57
56
  requirements:
58
57
  - - ! '>='
59
58
  - !ruby/object:Gem::Version
60
59
  version: '0'
61
60
  required_rubygems_version: !ruby/object:Gem::Requirement
62
- none: false
63
61
  requirements:
64
62
  - - ! '>='
65
63
  - !ruby/object:Gem::Version
66
64
  version: '0'
67
65
  requirements: []
68
66
  rubyforge_project: nowarning
69
- rubygems_version: 1.8.29
67
+ rubygems_version: 2.4.8
70
68
  signing_key:
71
69
  specification_version: 2
72
70
  summary: attachment_fu as a gem