paperclip-globalize3 4.0.0 → 4.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a64b1ca6059c37ded1740ce7355b0719fd3779ea181cf5c807e9ec6dc6f4cf37
4
- data.tar.gz: 3c2e9b7b67890d9d8970abc0c5c2e3aed65158c53109b9d6ab4fbf5a6b46a035
3
+ metadata.gz: 5a312c8a29bb70ad1e5b28debe833930d1351768fc9fd2c8f6aadc4730ecddb0
4
+ data.tar.gz: 03ba4da0e929eea496f0531f5d1340bc5b200ce3457d1d41792a8d81f6f5137e
5
5
  SHA512:
6
- metadata.gz: 02b19ec8859b68e357cd0fef909f3149bb8c20a56fc2dff1ea831b4668d237c8afa755435eea02c8e831295db9ced0698b6275fbd8581e3e7c78778c5e0ce5f2
7
- data.tar.gz: f048f0a08dffd68d3925ba752233dbdbaf6e2f7906e987054f9d9100e0f7cdd303af2d458fa9a5becc515e635dde67f20cfefa6496ed1b25ad22199545e55b65
6
+ metadata.gz: db328d726c93834f36bdc636285d3b17b47e6b467bd621686129a0e58d19f43e7178469e08b26895fafb3afc9caadcbbb1629693318015d95fdd5f4a985785b9
7
+ data.tar.gz: 0447cf60ca4a80ae1288679cd5d0a7c81109729cc1e893fb177b79b4f892786cb9f2dd5c20bc415de155d91ee7616994b19a6a1bcb18b11e4c0743195b56a1ec
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.6
4
- - 2.5.5
5
- - 2.6.3
3
+ - 2.4.9
4
+ - 2.5.7
5
+ - 2.6.5
6
6
  before_install:
7
7
  - gem uninstall -v '>= 2.0.1' -i $(rvm gemdir)@global -ax bundler || true
8
8
  - gem install bundler -v '1.16.6'
@@ -18,3 +18,10 @@ gemfile:
18
18
  - gemfiles/rails_5.1_pc_5_3.gemfile
19
19
  - gemfiles/rails_5.1_pc_6_0.gemfile
20
20
  - gemfiles/rails_5.1_pc_6_1.gemfile
21
+ - gemfiles/rails_5.2_pc_6_1.gemfile
22
+ - gemfiles/rails_6.0_pc_6_1.gemfile
23
+
24
+ jobs:
25
+ exclude:
26
+ - rvm: 2.4.9
27
+ gemfile: gemfiles/rails_6.0_pc_6_1.gemfile
@@ -5,6 +5,15 @@
5
5
  * Enhancements
6
6
  * (none)
7
7
 
8
+ # 4.1.0 (2019-11-04)
9
+
10
+ * Bugfixes
11
+ * (none)
12
+ * Enhancements
13
+ * Allow rails 5.2 and 6.0 ([#20](https://github.com/emjot/paperclip-globalize3/pull/20))
14
+ * Internal / development
15
+ * Update ruby patch versions
16
+
8
17
  # 4.0.0 (2019-07-10)
9
18
 
10
19
  * Breaking changes
data/README.md CHANGED
@@ -13,13 +13,15 @@ Note that this implementation patches some methods in the `Paperclip::Attachment
13
13
 
14
14
  * paperclip 5.3 - 6.1
15
15
  * globalize 5.3
16
- * Rails 4.2/5.0/5.1
16
+ * Rails 4.2/5.0/5.1/5.2/6.0
17
+
18
+ Rails 5.2 and later are only tested with paperclip 6.1 (see `.travis.yml` for details).
17
19
 
18
20
  For support of previous paperclip / globalize / rails versions please refer to the 3.x versions of this gem.
19
21
 
20
22
  ## Maintainance State of This Gem
21
23
 
22
- Since paperclip itself has been [deprecated](https://thoughtbot.com/blog/closing-the-trombone) and we currently do not use this gem in active projects any more, further development of this gem (e.g. compatibility with Rails 5.2) is unlikely. If anyone wants to submit a PR, we will of course still try to review + merge.
24
+ Since paperclip itself has been [deprecated](https://thoughtbot.com/blog/closing-the-trombone) and we currently do not use this gem in active projects any more, further development of this gem (e.g. compatibility with Rails 6.1) is unlikely. If anyone wants to submit a PR, we will of course still try to review + merge.
23
25
 
24
26
  ## Installation
25
27
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 4.2.0'
8
7
  gem 'paperclip', '~> 5.3.0'
8
+ gem 'rails', '~> 4.2.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 4.2.0'
8
7
  gem 'paperclip', '~> 6.0.0'
8
+ gem 'rails', '~> 4.2.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 4.2.0'
8
7
  gem 'paperclip', '~> 6.1.0'
8
+ gem 'rails', '~> 4.2.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 5.0.0'
8
7
  gem 'paperclip', '~> 5.3.0'
8
+ gem 'rails', '~> 5.0.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 5.0.0'
8
7
  gem 'paperclip', '~> 6.0.0'
8
+ gem 'rails', '~> 5.0.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 5.0.0'
8
7
  gem 'paperclip', '~> 6.1.0'
8
+ gem 'rails', '~> 5.0.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 5.1.0'
8
7
  gem 'paperclip', '~> 5.3.0'
8
+ gem 'rails', '~> 5.1.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 5.1.0'
8
7
  gem 'paperclip', '~> 6.0.0'
8
+ gem 'rails', '~> 5.1.0'
9
9
 
10
10
  gemspec path: '../'
@@ -4,7 +4,7 @@
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
7
- gem 'rails', '~> 5.1.0'
8
7
  gem 'paperclip', '~> 6.1.0'
8
+ gem 'rails', '~> 5.1.0'
9
9
 
10
10
  gemspec path: '../'
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by Appraisal
4
+
5
+ source 'https://rubygems.org'
6
+
7
+ gem 'paperclip', '~> 6.1.0'
8
+ gem 'rails', '~> 5.2.0'
9
+
10
+ gemspec path: '../'
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by Appraisal
4
+
5
+ source 'https://rubygems.org'
6
+
7
+ gem 'paperclip', '~> 6.1.0'
8
+ gem 'rails', '~> 6.0'
9
+ gem 'sqlite3', '~> 1.4'
10
+
11
+ gemspec path: '../'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Paperclip
4
4
  module Globalize3
5
- VERSION = '4.0.0'
5
+ VERSION = '4.1.0'
6
6
  end
7
7
  end
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  spec.required_ruby_version = '>= 2.4.6'
24
24
 
25
- spec.add_dependency 'activerecord', ['>= 4.2', '< 5.2']
25
+ spec.add_dependency 'activerecord', ['>= 4.2', '< 6.1']
26
26
  spec.add_dependency 'globalize', ['>= 5.3.0', '< 5.4.0']
27
27
  spec.add_dependency 'paperclip', ['>= 5.3', '< 6.2.0']
28
28
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paperclip-globalize3
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maximilian Herold
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-10 00:00:00.000000000 Z
11
+ date: 2019-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '4.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '5.2'
22
+ version: '6.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '4.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '5.2'
32
+ version: '6.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: globalize
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -244,6 +244,8 @@ files:
244
244
  - gemfiles/rails_5.1_pc_5_3.gemfile
245
245
  - gemfiles/rails_5.1_pc_6_0.gemfile
246
246
  - gemfiles/rails_5.1_pc_6_1.gemfile
247
+ - gemfiles/rails_5.2_pc_6_1.gemfile
248
+ - gemfiles/rails_6.0_pc_6_1.gemfile
247
249
  - lib/paperclip/globalize3.rb
248
250
  - lib/paperclip/globalize3/attachment.rb
249
251
  - lib/paperclip/globalize3/gem_helper.rb
@@ -276,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
276
278
  version: '0'
277
279
  requirements: []
278
280
  rubyforge_project:
279
- rubygems_version: 2.7.9
281
+ rubygems_version: 2.7.10
280
282
  signing_key:
281
283
  specification_version: 4
282
284
  summary: locale-specific attachments with paperclip and globalize