paperclip 2.2.4 → 2.2.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of paperclip might be problematic. Click here for more details.
- data/lib/paperclip.rb +1 -1
- data/lib/paperclip/matchers.rb +4 -0
- data/{shoulda_macros → lib/paperclip}/matchers/have_attached_file_matcher.rb +0 -0
- data/{shoulda_macros → lib/paperclip}/matchers/validate_attachment_content_type_matcher.rb +0 -0
- data/{shoulda_macros → lib/paperclip}/matchers/validate_attachment_presence_matcher.rb +0 -0
- data/{shoulda_macros → lib/paperclip}/matchers/validate_attachment_size_matcher.rb +0 -0
- data/shoulda_macros/paperclip.rb +1 -1
- metadata +7 -7
- data/shoulda_macros/matchers.rb +0 -4
data/lib/paperclip.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/shoulda_macros/paperclip.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paperclip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon Yurek
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-02-
|
12
|
+
date: 2009-02-11 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -62,6 +62,11 @@ files:
|
|
62
62
|
- lib/paperclip/callback_compatability.rb
|
63
63
|
- lib/paperclip/geometry.rb
|
64
64
|
- lib/paperclip/iostream.rb
|
65
|
+
- lib/paperclip/matchers/have_attached_file_matcher.rb
|
66
|
+
- lib/paperclip/matchers/validate_attachment_content_type_matcher.rb
|
67
|
+
- lib/paperclip/matchers/validate_attachment_presence_matcher.rb
|
68
|
+
- lib/paperclip/matchers/validate_attachment_size_matcher.rb
|
69
|
+
- lib/paperclip/matchers.rb
|
65
70
|
- lib/paperclip/processor.rb
|
66
71
|
- lib/paperclip/storage.rb
|
67
72
|
- lib/paperclip/thumbnail.rb
|
@@ -90,11 +95,6 @@ files:
|
|
90
95
|
- test/s3.yml
|
91
96
|
- test/storage_test.rb
|
92
97
|
- test/thumbnail_test.rb
|
93
|
-
- shoulda_macros/matchers/have_attached_file_matcher.rb
|
94
|
-
- shoulda_macros/matchers/validate_attachment_content_type_matcher.rb
|
95
|
-
- shoulda_macros/matchers/validate_attachment_presence_matcher.rb
|
96
|
-
- shoulda_macros/matchers/validate_attachment_size_matcher.rb
|
97
|
-
- shoulda_macros/matchers.rb
|
98
98
|
- shoulda_macros/paperclip.rb
|
99
99
|
has_rdoc: true
|
100
100
|
homepage: http://www.thoughtbot.com/projects/paperclip
|
data/shoulda_macros/matchers.rb
DELETED
@@ -1,4 +0,0 @@
|
|
1
|
-
require 'shoulda_macros/matchers/have_attached_file_matcher'
|
2
|
-
require 'shoulda_macros/matchers/validate_attachment_presence_matcher'
|
3
|
-
require 'shoulda_macros/matchers/validate_attachment_content_type_matcher'
|
4
|
-
require 'shoulda_macros/matchers/validate_attachment_size_matcher'
|