thoughtbot-paperclip 2.2.4 → 2.2.5

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/lib/paperclip.rb CHANGED
@@ -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: thoughtbot-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 -08:00
12
+ date: 2009-02-11 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -62,6 +62,12 @@ files:
62
62
  - lib/paperclip/callback_compatability.rb
63
63
  - lib/paperclip/geometry.rb
64
64
  - lib/paperclip/iostream.rb
65
+ - lib/paperclip/matchers
66
+ - lib/paperclip/matchers/have_attached_file_matcher.rb
67
+ - lib/paperclip/matchers/validate_attachment_content_type_matcher.rb
68
+ - lib/paperclip/matchers/validate_attachment_presence_matcher.rb
69
+ - lib/paperclip/matchers/validate_attachment_size_matcher.rb
70
+ - lib/paperclip/matchers.rb
65
71
  - lib/paperclip/processor.rb
66
72
  - lib/paperclip/storage.rb
67
73
  - lib/paperclip/thumbnail.rb
@@ -92,12 +98,6 @@ files:
92
98
  - test/s3.yml
93
99
  - test/storage_test.rb
94
100
  - test/thumbnail_test.rb
95
- - shoulda_macros/matchers
96
- - shoulda_macros/matchers/have_attached_file_matcher.rb
97
- - shoulda_macros/matchers/validate_attachment_content_type_matcher.rb
98
- - shoulda_macros/matchers/validate_attachment_presence_matcher.rb
99
- - shoulda_macros/matchers/validate_attachment_size_matcher.rb
100
- - shoulda_macros/matchers.rb
101
101
  - shoulda_macros/paperclip.rb
102
102
  has_rdoc: true
103
103
  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'