paperclip 4.2.2 → 4.2.3

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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa18c86bf030ee0f661dc1161c300704284df4ea
4
- data.tar.gz: e6e4a743830550b454d82f8790cda44dadbff165
3
+ metadata.gz: 72ed4f4157aa2c718080d5b5d894e37c2b86a4c6
4
+ data.tar.gz: 72263210049548eb829d3f96d0b993efc694fd98
5
5
  SHA512:
6
- metadata.gz: 87f896288a2cfa5a420b238029ed57cd469306174552c6bd0cea587f5c9b5431b10afff9b12ffe0b63bbd42249a0928783c9681ac5e93fb1cf9894daed0d7635
7
- data.tar.gz: cb3f3bdfc812816830a3533bd6edc690d795ec22279b9e8f7f9b940db7a3db7301924c174129454a4f4cc60b689936c6b4c5ea69aec230f728c3414a14150744
6
+ metadata.gz: 8b07767ba93123c263864238d2ec34ef09233edf4239a9ac12eb43e98b5fe2ba8b363fdf3abe0c7ac1ff6c11ff75b8f65e2f47cc505e53bf64d8fb48b97d9584
7
+ data.tar.gz: 6bbd4475d481df757ef709c0a1f035799d493955f17900e437c9409c1ee4ba4869ff1376c9a196c073b5b22fad84838a1ffb54a82e51d188bee5f7550ee95b44
data/Appraisals CHANGED
@@ -1,5 +1,5 @@
1
1
  appraise "3.2" do
2
- gem "rails", "~> 3.2.15"
2
+ gem "rails", "~> 3.2.0"
3
3
  gem "paperclip", :path => "../"
4
4
  end
5
5
 
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'sqlite3', '1.3.8', :platforms => :ruby
5
+ gem 'sqlite3', '~> 1.3.8', :platforms => :ruby
6
6
 
7
7
  gem 'jruby-openssl', :platforms => :jruby
8
8
  gem 'activerecord-jdbcsqlite3-adapter', :platforms => :jruby
data/NEWS CHANGED
@@ -1,8 +1,13 @@
1
- New in 4.2.2:
1
+ 4.2.3:
2
+
3
+ * Fix dependency specifications (didn't work with Rails 4.1)
4
+ * Fix paperclip tests in CI
5
+
6
+ 4.2.2:
2
7
 
3
8
  * Security fix: Fix a potential security issue with spoofing
4
9
 
5
- New in 4.2.1:
10
+ 4.2.1:
6
11
 
7
12
  * Improvement: Added `validate_media_type` options to allow/bypass spoof check
8
13
  * Improvement: Added incremental backoff when AWS gives us a SlowDown error.
@@ -19,7 +24,7 @@ New in 4.2.1:
19
24
  * Test Fix: Improves speed and reliability of the specs
20
25
  * Bug Fix: #original_filename= does not error when passed `nil`
21
26
 
22
- New in 4.2.0:
27
+ 4.2.0:
23
28
 
24
29
  * Improvement: Converted test suite from test/unit to RSpec
25
30
  * Improvement: Refactored Paperclip::Attachment#assign
@@ -35,7 +40,7 @@ New in 4.2.0:
35
40
  * Improvement: Allow `nil` geometry strings
36
41
  * Improvement: Use `eager_load!`
37
42
 
38
- New in 4.1.1:
43
+ 4.1.1:
39
44
 
40
45
  * Improvement: Add default translations for spoof validation
41
46
  * Bug Fix: Don't check for spoofs if the file hasn't changed
@@ -46,7 +51,7 @@ New in 4.1.1:
46
51
  * Improvement: Allow travis-ci to finish-fast
47
52
 
48
53
 
49
- New in 4.1.0:
54
+ 4.1.0:
50
55
 
51
56
  * Improvement: Add :content_type_mappings to correct for missing spoof types
52
57
  * Improvement: Credit Egor Homakov with discovering the content_type spoof bug
@@ -54,7 +59,7 @@ New in 4.1.0:
54
59
  * Improvement: Make MIME type optional for Data URIs.
55
60
  * Improvement: Add default format for styles
56
61
 
57
- New in 4.0.0:
62
+ 4.0.0:
58
63
 
59
64
  * Security: Attachments are checked to make sure they're not pulling a fast one.
60
65
  * Security: It is now *enforced* that every attachment has a file/mime validation.
@@ -62,7 +67,7 @@ New in 4.0.0:
62
67
  * Improvement: Added bullets to the 3.5.3 list of changes. Very important.
63
68
  * Improvement: Updated the copyright to 2014
64
69
 
65
- New in 3.5.3:
70
+ 3.5.3:
66
71
 
67
72
  * Improvement: After three long, hard years... we know how to upgrade
68
73
  * Bug Fix: #expiring_url returns 'missing' urls if nothing is attached
@@ -84,14 +89,14 @@ New in 3.5.3:
84
89
  * Test Improvement: Ensure more files are properly closed during tests
85
90
  * Test Bug Fix: Return the gemfile's syntax to normal
86
91
 
87
- New in 3.5.2:
92
+ 3.5.2:
88
93
 
89
94
  * Security: Force cocaine to at least 0.5.3 to include a security fix
90
95
  * Improvement: Fixed some README exmaples
91
96
  * Feature: Added HTTP URL Proxy Adapter, can assign string URLs as attachments
92
97
  * Improvement: Put validation errors on the base attribute and the sub-attribute
93
98
 
94
- New in 3.5.1:
99
+ 3.5.1:
95
100
 
96
101
  * Bug Fix: Returned the class-level `attachment_definitions` method for compatability.
97
102
  * Improvement: Ensured compatability with Rails 4
@@ -99,7 +104,7 @@ New in 3.5.1:
99
104
  * Bug Fix: #1296, where validations were generating errors
100
105
  * Improvement: Specify MIT license in the gemspec
101
106
 
102
- New in 3.5.0:
107
+ 3.5.0:
103
108
 
104
109
  * Feature: Handle Base64-encoded data URIs as uploads
105
110
  * Feature: Add a FilenameCleaner class to allow custom filename sanitation
@@ -115,7 +120,7 @@ New in 3.5.0:
115
120
  * Improvement: Added Ruby 2.0.0 as a supported platform and removed 1.8.7
116
121
  * Improvement: Fixed some incompatabilities in the test suite
117
122
 
118
- New in 3.4.2:
123
+ 3.4.2:
119
124
 
120
125
  * Improvement: Use https for Gemfile urls
121
126
  * Improvement: Updated and more correct documentation
@@ -125,7 +130,7 @@ New in 3.4.2:
125
130
  * Improvement: Remove path clash checking, as it's unnecessary
126
131
  * Bug Fix: Do not rely on checking version numbers for aws-sdk
127
132
 
128
- New in 3.4.1:
133
+ 3.4.1:
129
134
 
130
135
  * Improvement: Various documentation fixes and improvements
131
136
  * Bug Fix: Clearing an attachment with `preserve_files` on should still clear the attachment
@@ -138,7 +143,7 @@ New in 3.4.1:
138
143
  * Improvement: Update to latest cocaine
139
144
  * Improvement: Update copyrights, various typos
140
145
 
141
- New in 3.4.0:
146
+ 3.4.0:
142
147
 
143
148
  * Bug Fix: Allow UploadedFileAdapter to force the use of `file`
144
149
  * Bug Fix: Close the file handle when dealing with URIs
@@ -168,11 +173,11 @@ New In 3.3.1:
168
173
 
169
174
  * Bug Fix: Moved Filesystem's copy_to_local_file to the right place.
170
175
 
171
- New in 3.3.0:
176
+ 3.3.0:
172
177
 
173
178
  * Improvement: Upgrade cocaine to 0.4
174
179
 
175
- New in 3.2.0:
180
+ 3.2.0:
176
181
 
177
182
  * Bug Fix: Use the new correct Amazon S3 encryption header.
178
183
  * Bug Fix: The rake task respects the updated_at column.
@@ -181,14 +186,14 @@ New in 3.2.0:
181
186
  * Feature: Automatically rotate images.
182
187
  * Feature: Reduce class-oriented programming of the attachment definitions.
183
188
 
184
- New in 3.1.4:
189
+ 3.1.4:
185
190
 
186
191
  * Bug Fix: Allow user to be able to set path without `:style` attribute and not raising an error.
187
192
  This is a regression introduced in 3.1.3, and that feature will be postponed to another minor
188
193
  release instead.
189
194
  * Feature: Allow for URI Adapter as an optional paperclip io adapter.
190
195
 
191
- New in 3.1.3:
196
+ 3.1.3:
192
197
 
193
198
  * Bug Fix: Copy empty attachment between instances is now working.
194
199
  * Bug Fix: Correctly rescue Fog error.
@@ -200,17 +205,17 @@ New in 3.1.3:
200
205
  * Bug Fix: Paperclip now gracefully handles msising file command.
201
206
  * Bug Fix: `StringIOAdapter` now accepts content type.
202
207
 
203
- New in 3.1.2:
208
+ 3.1.2:
204
209
 
205
210
  * Bug Fix: #remove_attachment on 3.1.0 and 3.1.1 mistakenly trying to remove the column that has
206
211
  the same name as data type (such as :string, :datetime, :interger.) You're advised to update to
207
212
  Paperclip 3.1.2 as soon as possible.
208
213
 
209
- New in 3.1.1:
214
+ 3.1.1:
210
215
 
211
216
  * Bug Fix: Paperclip will only load Paperclip::Schema only when Active Record is available.
212
217
 
213
- New in 3.1.0:
218
+ 3.1.0:
214
219
 
215
220
  * Feature: Paperclip now support new migration syntax (sexy migration) that reads better:
216
221
 
@@ -249,11 +254,11 @@ New in 3.1.0:
249
254
  the best_content_type to throw an error on trying nil.content_type.
250
255
  * Bug Fix: Fix problem when the gem cannot be installed on the system that has Asepsis installed.
251
256
 
252
- New in 3.0.4:
257
+ 3.0.4:
253
258
 
254
259
  * Feature: Adds support for S3 scheme-less URL generation.
255
260
 
256
- New in 3.0.3:
261
+ 3.0.3:
257
262
 
258
263
  * Bug Fix: ThumbnailProcessor now correctly detects and preserve animated GIF.
259
264
  * Bug Fix: File extension is now preserved in generated Tempfile from adapter.
@@ -276,7 +281,7 @@ New in 3.0.3:
276
281
  * Bug Fix: Fix attachment.reprocess! when using storage providers fog and s3.
277
282
  * Bug Fix: Fix a problem with incorrect content_type detected with 'file' command for an empty file on Mac.
278
283
 
279
- New in 3.0.2:
284
+ 3.0.2:
280
285
 
281
286
  * API CHANGE: Generated migration class name is now plural (AddAttachmentToUsers instead of AddAttachmentToUser)
282
287
  * API CHANGE: Remove Rails plugin initialization code.
@@ -285,13 +290,13 @@ New in 3.0.2:
285
290
  * Bug Fix: Fix a problem when there's no logger specified.
286
291
  * Bug Fix: Fix a problem when attaching Rack::Test::UploadedFile instance.
287
292
 
288
- New in 3.0.1:
293
+ 3.0.1:
289
294
 
290
295
  * Feature: Introduce Paperlip IO adapter.
291
296
  * Bug Fix: Regression in AttachmentContentTypeValidator has been fixed.
292
297
  * API CHANGE: #to_file has been removed. Use the #copy_to_local_file method instead.
293
298
 
294
- New in 3.0.0:
299
+ 3.0.0:
295
300
 
296
301
  * API CHANGE: Paperclip now requires at least Ruby on Rails version 3.0.0
297
302
  * API CHANGE: The default :url and :path have changed. The new scheme avoids
@@ -310,7 +315,7 @@ New in 3.0.0:
310
315
  * Bug Fix: File given to S3 and Fog storage will now be rewinded after flush_write.
311
316
  * Feature: You can now pass addional parameter to S3 expiring URL, such as :content_type.
312
317
 
313
- New in 2.7.0:
318
+ 2.7.0:
314
319
 
315
320
  * Bug Fix: Checking the existence of a file on S3 handles all AWS errors.
316
321
  * Bug Fix: Clear the fingerprint when removing an attachment.
@@ -319,25 +324,25 @@ New in 2.7.0:
319
324
  * Compatibility: Support for ActiveSupport < 2.3.12.
320
325
  * Compatibility: Support for Rails 3.2.
321
326
 
322
- New in 2.6.0:
327
+ 2.6.0:
323
328
 
324
329
  * Bug Fix: Files are re-wound after reading.
325
330
  * Feature: Remove Rails dependency from specs that need Paperclip.
326
331
  * Feature: Validation matchers support conditionals.
327
332
 
328
- New in 2.5.2:
333
+ 2.5.2:
329
334
 
330
335
  * Bug Fix: Can be installed on Windows.
331
336
  * Feature: The Fog bucket name, authentication, and host can be determined at runtime via Proc.
332
337
  * Feature: Special characters are replaced with underscores in #url and #path.
333
338
 
334
- New in 2.5.1:
339
+ 2.5.1:
335
340
 
336
341
  * Feature: After we've computed the content type, pass it to Fog.
337
342
  * Feature: S3 encryption with the new :s3_server_side_encryption option.
338
343
  * Feature: Works without ActiveRecord, allowing for e.g. mongo backends.
339
344
 
340
- New in 2.5.0:
345
+ 2.5.0:
341
346
 
342
347
  * Performance: Only connect to S3 when absolutely needed.
343
348
  * Bug Fix: STI with cached classes respect new options.
@@ -2,13 +2,13 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "sqlite3", "1.3.8", :platforms => :ruby
5
+ gem "sqlite3", "~> 1.3.8", :platforms => :ruby
6
6
  gem "jruby-openssl", :platforms => :jruby
7
7
  gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
8
8
  gem "rubysl", :platforms => :rbx
9
9
  gem "racc", :platforms => :rbx
10
10
  gem "pry"
11
- gem "rails", "~> 3.2.15"
11
+ gem "rails", "~> 3.2.0"
12
12
  gem "paperclip", :path => "../"
13
13
 
14
14
  group :development, :test do
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "sqlite3", "1.3.8", :platforms => :ruby
5
+ gem "sqlite3", "~> 1.3.8", :platforms => :ruby
6
6
  gem "jruby-openssl", :platforms => :jruby
7
7
  gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
8
8
  gem "rubysl", :platforms => :rbx
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "sqlite3", "1.3.8", :platforms => :ruby
5
+ gem "sqlite3", "~> 1.3.8", :platforms => :ruby
6
6
  gem "jruby-openssl", :platforms => :jruby
7
7
  gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
8
8
  gem "rubysl", :platforms => :rbx
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "sqlite3", "1.3.8", :platforms => :ruby
5
+ gem "sqlite3", "~> 1.3.8", :platforms => :ruby
6
6
  gem "jruby-openssl", :platforms => :jruby
7
7
  gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
8
8
  gem "rubysl", :platforms => :rbx
@@ -1,3 +1,3 @@
1
1
  module Paperclip
2
- VERSION = "4.2.2" unless defined? Paperclip::VERSION
2
+ VERSION = "4.2.3" unless defined? Paperclip::VERSION
3
3
  end
@@ -20,19 +20,19 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
 
22
22
  s.requirements << "ImageMagick"
23
- s.required_ruby_version = ">= 1.9.2"
23
+ s.required_ruby_version = ">= 2.0.0"
24
24
 
25
- s.add_dependency('activemodel', '>= 3.0.0')
26
- s.add_dependency('activesupport', '>= 3.0.0')
27
- s.add_dependency('cocaine', '~> 0.5.3')
25
+ s.add_dependency('activemodel', '>= 3.2.0')
26
+ s.add_dependency('activesupport', '>= 3.2.0')
27
+ s.add_dependency('cocaine', '~> 0.5.5')
28
28
  s.add_dependency('mime-types')
29
29
 
30
- s.add_development_dependency('activerecord', '>= 3.0.0')
30
+ s.add_development_dependency('activerecord', '>= 3.2.0')
31
31
  s.add_development_dependency('shoulda')
32
32
  s.add_development_dependency('rspec')
33
33
  s.add_development_dependency('appraisal')
34
34
  s.add_development_dependency('mocha')
35
- s.add_development_dependency('aws-sdk', '>= 1.5.7')
35
+ s.add_development_dependency('aws-sdk', '>= 1.5.7', "<= 2.0")
36
36
  s.add_development_dependency('bourne')
37
37
  s.add_development_dependency('cucumber', '~> 1.3.11')
38
38
  s.add_development_dependency('aruba')
@@ -45,7 +45,7 @@ Gem::Specification.new do |s|
45
45
  s.add_development_dependency('rake')
46
46
  s.add_development_dependency('fakeweb')
47
47
  s.add_development_dependency('railties')
48
- s.add_development_dependency('actionmailer', '>= 3.0.0')
48
+ s.add_development_dependency('actionmailer', '>= 3.2.0')
49
49
  s.add_development_dependency('generator_spec')
50
50
  s.add_development_dependency('timecop')
51
51
  end
@@ -3,32 +3,32 @@ require 'spec_helper'
3
3
  describe Paperclip::MediaTypeSpoofDetector do
4
4
  it 'rejects a file that is named .html and identifies as PNG' do
5
5
  file = File.open(fixture_file("5k.png"))
6
- assert Paperclip::MediaTypeSpoofDetector.using(file, "5k.html").spoofed?
6
+ assert Paperclip::MediaTypeSpoofDetector.using(file, "5k.html", "image/png").spoofed?
7
7
  end
8
8
 
9
9
  it 'does not reject a file that is named .jpg and identifies as PNG' do
10
10
  file = File.open(fixture_file("5k.png"))
11
- assert ! Paperclip::MediaTypeSpoofDetector.using(file, "5k.jpg").spoofed?
11
+ assert ! Paperclip::MediaTypeSpoofDetector.using(file, "5k.jpg", "image/png").spoofed?
12
12
  end
13
13
 
14
14
  it 'does not reject a file that is named .html and identifies as HTML' do
15
15
  file = File.open(fixture_file("empty.html"))
16
- assert ! Paperclip::MediaTypeSpoofDetector.using(file, "empty.html").spoofed?
16
+ assert ! Paperclip::MediaTypeSpoofDetector.using(file, "empty.html", "text/html").spoofed?
17
17
  end
18
18
 
19
19
  it 'does not reject a file that does not have a name' do
20
20
  file = File.open(fixture_file("empty.html"))
21
- assert ! Paperclip::MediaTypeSpoofDetector.using(file, "").spoofed?
21
+ assert ! Paperclip::MediaTypeSpoofDetector.using(file, "", "").spoofed?
22
22
  end
23
23
 
24
24
  it 'does not reject a file that does have an extension' do
25
25
  file = File.open(fixture_file("empty.html"))
26
- assert ! Paperclip::MediaTypeSpoofDetector.using(file, "data").spoofed?
26
+ assert ! Paperclip::MediaTypeSpoofDetector.using(file, "data", "").spoofed?
27
27
  end
28
28
 
29
29
  it 'does not reject when the supplied file is an IOAdapter' do
30
30
  adapter = Paperclip.io_adapters.for(File.new(fixture_file("5k.png")))
31
- assert ! Paperclip::MediaTypeSpoofDetector.using(adapter, adapter.original_filename).spoofed?
31
+ assert ! Paperclip::MediaTypeSpoofDetector.using(adapter, adapter.original_filename, adapter.content_type).spoofed?
32
32
  end
33
33
 
34
34
  it 'does not reject when the extension => content_type is in :content_type_mappings' do
@@ -38,7 +38,7 @@ describe Paperclip::MediaTypeSpoofDetector do
38
38
  file.puts "Certificate!"
39
39
  file.close
40
40
  adapter = Paperclip.io_adapters.for(File.new(file.path));
41
- assert ! Paperclip::MediaTypeSpoofDetector.using(adapter, adapter.original_filename).spoofed?
41
+ assert ! Paperclip::MediaTypeSpoofDetector.using(adapter, adapter.original_filename, adapter.content_type).spoofed?
42
42
  ensure
43
43
  Paperclip.options[:content_type_mappings] = {}
44
44
  end
@@ -49,7 +49,7 @@ describe Paperclip::MediaTypeSpoofDetector do
49
49
  assert Paperclip::MediaTypeSpoofDetector.using(file, "empty.html", "image/jpg").spoofed?
50
50
  end
51
51
 
52
- it "does not reject is content_type is empty but otherwise checks out" do
52
+ it "does not reject if content_type is empty but otherwise checks out" do
53
53
  file = File.open(fixture_file("empty.html"))
54
54
  assert ! Paperclip::MediaTypeSpoofDetector.using(file, "empty.html", "").spoofed?
55
55
  end
@@ -20,7 +20,7 @@ describe Paperclip do
20
20
  it "saves Cocaine::CommandLine.path that set before" do
21
21
  Cocaine::CommandLine.path = "/opt/my_app/bin"
22
22
  Paperclip.run("convert", "stuff")
23
- assert_equal [Cocaine::CommandLine.path].flatten.include?("/opt/my_app/bin"), true
23
+ expect(Cocaine::CommandLine.path).to match("/opt/my_app/bin")
24
24
  end
25
25
 
26
26
  it "does not duplicate Cocaine::CommandLine.path on multiple runs" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paperclip
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.2
4
+ version: 4.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Yurek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-05 00:00:00.000000000 Z
11
+ date: 2015-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0
19
+ version: 3.2.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0
26
+ version: 3.2.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 3.0.0
33
+ version: 3.2.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 3.0.0
40
+ version: 3.2.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: cocaine
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.5.3
47
+ version: 0.5.5
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.5.3
54
+ version: 0.5.5
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: mime-types
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: 3.0.0
75
+ version: 3.2.0
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 3.0.0
82
+ version: 3.2.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: shoulda
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -143,6 +143,9 @@ dependencies:
143
143
  - - ">="
144
144
  - !ruby/object:Gem::Version
145
145
  version: 1.5.7
146
+ - - "<="
147
+ - !ruby/object:Gem::Version
148
+ version: '2.0'
146
149
  type: :development
147
150
  prerelease: false
148
151
  version_requirements: !ruby/object:Gem::Requirement
@@ -150,6 +153,9 @@ dependencies:
150
153
  - - ">="
151
154
  - !ruby/object:Gem::Version
152
155
  version: 1.5.7
156
+ - - "<="
157
+ - !ruby/object:Gem::Version
158
+ version: '2.0'
153
159
  - !ruby/object:Gem::Dependency
154
160
  name: bourne
155
161
  requirement: !ruby/object:Gem::Requirement
@@ -310,14 +316,14 @@ dependencies:
310
316
  requirements:
311
317
  - - ">="
312
318
  - !ruby/object:Gem::Version
313
- version: 3.0.0
319
+ version: 3.2.0
314
320
  type: :development
315
321
  prerelease: false
316
322
  version_requirements: !ruby/object:Gem::Requirement
317
323
  requirements:
318
324
  - - ">="
319
325
  - !ruby/object:Gem::Version
320
- version: 3.0.0
326
+ version: 3.2.0
321
327
  - !ruby/object:Gem::Dependency
322
328
  name: generator_spec
323
329
  requirement: !ruby/object:Gem::Requirement
@@ -553,7 +559,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
553
559
  requirements:
554
560
  - - ">="
555
561
  - !ruby/object:Gem::Version
556
- version: 1.9.2
562
+ version: 2.0.0
557
563
  required_rubygems_version: !ruby/object:Gem::Requirement
558
564
  requirements:
559
565
  - - ">="