paperclip-globalize3 3.2.0 → 3.3.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 +4 -4
- data/Appraisals +6 -0
- data/CHANGELOG.md +6 -0
- data/README.md +7 -1
- data/gemfiles/rails_4.2_pc_4_2.gemfile +2 -1
- data/gemfiles/rails_4.2_pc_4_3.gemfile +2 -1
- data/gemfiles/rails_4.2_pc_5_0.gemfile +2 -1
- data/gemfiles/rails_4.2_pc_5_2.gemfile +2 -1
- data/gemfiles/rails_4.2_pc_6_0.gemfile +2 -1
- data/gemfiles/rails_4.2_pc_6_1.gemfile +2 -1
- data/gemfiles/rails_5.0_pc_4_2.gemfile +1 -1
- data/gemfiles/rails_5.0_pc_5_0.gemfile +1 -1
- data/gemfiles/rails_5.0_pc_5_2.gemfile +1 -1
- data/gemfiles/rails_5.0_pc_6_0.gemfile +1 -1
- data/gemfiles/rails_5.0_pc_6_1.gemfile +1 -1
- data/gemfiles/rails_5.1_pc_4_2.gemfile +1 -1
- data/gemfiles/rails_5.1_pc_5_0.gemfile +1 -1
- data/gemfiles/rails_5.1_pc_5_2.gemfile +1 -1
- data/gemfiles/rails_5.1_pc_6_0.gemfile +1 -1
- data/gemfiles/rails_5.1_pc_6_1.gemfile +1 -1
- data/lib/paperclip/globalize3/version.rb +1 -1
- data/paperclip-globalize3.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9dc74f12a8756f9da1870401c9f62c0c2060354ffcd3337fb2c1f3ae0ae6c77c
|
|
4
|
+
data.tar.gz: 9ce39f42bd2eee08ce139e72567a9e17bb20165885841e6c206f51139ab09835
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67a2648cacc3b5eb717fbcab65eaad8472c31a37e54a50f181e4865182906f4290739c0194bcdcc6d36e63259f94ec0c57965dd30f965dbadccd1b4ba27a50b9
|
|
7
|
+
data.tar.gz: 80cc8b8d2fb888ce3e7130ac155586b012eedf9dfc8cc3e0b7a13ae467ebd5704f5781a64aaf030dec6c8d5f8fb63e495470fe043c70c77b8209962af9458ced
|
data/Appraisals
CHANGED
|
@@ -3,31 +3,37 @@
|
|
|
3
3
|
appraise 'rails-4.2-pc-4-2' do
|
|
4
4
|
gem 'rails', '~> 4.2.0'
|
|
5
5
|
gem 'paperclip', '~> 4.2.0'
|
|
6
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
6
7
|
end
|
|
7
8
|
|
|
8
9
|
appraise 'rails-4.2-pc-4-3' do
|
|
9
10
|
gem 'rails', '~> 4.2.0'
|
|
10
11
|
gem 'paperclip', '~> 4.3.0'
|
|
12
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
11
13
|
end
|
|
12
14
|
|
|
13
15
|
appraise 'rails-4.2-pc-5-0' do
|
|
14
16
|
gem 'rails', '~> 4.2.0'
|
|
15
17
|
gem 'paperclip', '~> 5.0.0'
|
|
18
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
16
19
|
end
|
|
17
20
|
|
|
18
21
|
appraise 'rails-4.2-pc-5-2' do
|
|
19
22
|
gem 'rails', '~> 4.2.0'
|
|
20
23
|
gem 'paperclip', '~> 5.2.0'
|
|
24
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
21
25
|
end
|
|
22
26
|
|
|
23
27
|
appraise 'rails-4.2-pc-6-0' do
|
|
24
28
|
gem 'rails', '~> 4.2.0'
|
|
25
29
|
gem 'paperclip', '~> 6.0.0'
|
|
30
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
26
31
|
end
|
|
27
32
|
|
|
28
33
|
appraise 'rails-4.2-pc-6-1' do
|
|
29
34
|
gem 'rails', '~> 4.2.0'
|
|
30
35
|
gem 'paperclip', '~> 6.1.0'
|
|
36
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
31
37
|
end
|
|
32
38
|
|
|
33
39
|
# Rails 5.0
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@
|
|
|
5
5
|
* Enhancements
|
|
6
6
|
* (none)
|
|
7
7
|
|
|
8
|
+
# 3.3.0 (2019-05-14)
|
|
9
|
+
|
|
10
|
+
* Enhancements
|
|
11
|
+
* Allow globalize 5.2 ([#14](https://github.com/emjot/paperclip-globalize3/pull/14)).
|
|
12
|
+
Note that globalize 5.2.0 is currently broken in rails 4.2; see README.
|
|
13
|
+
|
|
8
14
|
# 3.2.0 (2019-04-18)
|
|
9
15
|
|
|
10
16
|
* Enhancements
|
data/README.md
CHANGED
|
@@ -12,11 +12,17 @@ Note that this implementation patches some methods in the `Paperclip::Attachment
|
|
|
12
12
|
## Compatibility
|
|
13
13
|
|
|
14
14
|
* paperclip 4.2 - 6.1
|
|
15
|
-
* globalize 5.0 - 5.
|
|
15
|
+
* globalize 5.0 - 5.2
|
|
16
16
|
* Rails 4.2/5.0/5.1
|
|
17
17
|
|
|
18
18
|
For support of previous paperclip / globalize / rails versions please refer to the 2.x versions of this gem.
|
|
19
19
|
|
|
20
|
+
### Important Note for Rails 4.2.x with globalize 5.2.0
|
|
21
|
+
|
|
22
|
+
If you use Rails 4.2: There is a bug in globalize 5.2.0. Ensure you use globalize 5.2.1 or later after it gets released. Meanwhile, you should be able to use the following instead (which is one commit after the 5.2.0 release and includes the fix):
|
|
23
|
+
|
|
24
|
+
gem 'globalize', git: 'https://github.com/globalize/globalize', branch: 'master', ref: '3fe2f93ab2'
|
|
25
|
+
|
|
20
26
|
## Maintainance State of This Gem
|
|
21
27
|
|
|
22
28
|
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, globalize 5.2 etc.) is unlikely. If anyone wants to submit a PR, we will of course still try to review + merge.
|
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.required_ruby_version = '>= 2.2.2'
|
|
22
22
|
|
|
23
23
|
spec.add_dependency 'activerecord', ['>= 4.2', '< 5.2']
|
|
24
|
-
spec.add_dependency 'globalize', ['>= 5.0.0', '< 5.
|
|
24
|
+
spec.add_dependency 'globalize', ['>= 5.0.0', '< 5.3.0']
|
|
25
25
|
spec.add_dependency 'paperclip', ['>= 4.2', '< 6.2.0']
|
|
26
26
|
|
|
27
27
|
spec.add_development_dependency 'appraisal', '~> 2.2'
|
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: 3.
|
|
4
|
+
version: 3.3.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-
|
|
11
|
+
date: 2019-05-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
version: 5.0.0
|
|
40
40
|
- - "<"
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 5.
|
|
42
|
+
version: 5.3.0
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -49,7 +49,7 @@ dependencies:
|
|
|
49
49
|
version: 5.0.0
|
|
50
50
|
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 5.
|
|
52
|
+
version: 5.3.0
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: paperclip
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|