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.

@@ -43,7 +43,7 @@ end
43
43
  # documentation for Paperclip::ClassMethods for more useful information.
44
44
  module Paperclip
45
45
 
46
- VERSION = "2.2.4"
46
+ VERSION = "2.2.5"
47
47
 
48
48
  class << self
49
49
  # Provides configurability to Paperclip. There are a number of options available, such as:
@@ -0,0 +1,4 @@
1
+ require 'paperclip/matchers/have_attached_file_matcher'
2
+ require 'paperclip/matchers/validate_attachment_presence_matcher'
3
+ require 'paperclip/matchers/validate_attachment_content_type_matcher'
4
+ require 'paperclip/matchers/validate_attachment_size_matcher'
@@ -1,4 +1,4 @@
1
- require 'shoulda_macros/matchers'
1
+ require 'paperclip/matchers'
2
2
 
3
3
  module Paperclip
4
4
  # =Paperclip Shoulda Macros
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
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-09 00:00:00 -05:00
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
@@ -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'