active_type 2.0 → 2.1.2
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/.github/workflows/test.yml +23 -15
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile.4.2.mysql2.lock +1 -1
- data/Gemfile.4.2.pg.lock +1 -1
- data/Gemfile.4.2.sqlite3.lock +1 -1
- data/Gemfile.5.2.mysql2.lock +2 -2
- data/Gemfile.5.2.pg.lock +2 -2
- data/Gemfile.5.2.sqlite3.lock +2 -2
- data/Gemfile.6.0.sqlite3.lock +2 -2
- data/Gemfile.6.1.pg.lock +3 -2
- data/Gemfile.6.1.sqlite3.lock +3 -2
- data/Gemfile.7.0.pg +9 -0
- data/Gemfile.7.0.pg.lock +58 -0
- data/Gemfile.7.0.sqlite3 +9 -0
- data/Gemfile.7.0.sqlite3.lock +58 -0
- data/README.md +1 -1
- data/active_type.gemspec +3 -2
- data/lib/active_type/nested_attributes/association.rb +9 -5
- data/lib/active_type/record_extension/inheritance.rb +1 -1
- data/lib/active_type/version.rb +1 -1
- data/lib/active_type/virtual_attributes.rb +2 -2
- metadata +12 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40083adc49f1500ec21e7e2febbca83a4757bc7daf87c3f5e8a1edb31c242502
|
|
4
|
+
data.tar.gz: 2a801dc75197b91f61a40f0a06de9f96d743cd092004c6426dabeeceb2787ea2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9b8c4b430b352bc0f178354fe43685a19e1fbd24cf8c6fdff0ce18713f97afa682051dcd2dabdf670769d79b24fb760ec9a573d0e312803ce2d887fef04a874
|
|
7
|
+
data.tar.gz: 6f4bda1b9867f569a5269edae81351e59ad0a1eb4b021aeb14735aa23dafca5ce1321236557c7c007fa8632ad1671c6881aab6b06fc429d62392d95d462ce6bc
|
data/.github/workflows/test.yml
CHANGED
|
@@ -2,9 +2,9 @@ name: Tests
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [
|
|
5
|
+
branches: [master]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [
|
|
7
|
+
branches: [master]
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
test_sqlite:
|
|
@@ -28,16 +28,22 @@ jobs:
|
|
|
28
28
|
gemfile: Gemfile.6.0.sqlite3
|
|
29
29
|
- ruby: "2.6.3"
|
|
30
30
|
gemfile: Gemfile.6.1.sqlite3
|
|
31
|
-
- ruby: "2.
|
|
31
|
+
- ruby: "2.6.3"
|
|
32
|
+
gemfile: Gemfile.7.0.sqlite3
|
|
33
|
+
- ruby: "2.7.4"
|
|
32
34
|
gemfile: Gemfile.5.2.sqlite3
|
|
33
|
-
- ruby: "2.7.
|
|
35
|
+
- ruby: "2.7.4"
|
|
34
36
|
gemfile: Gemfile.6.0.sqlite3
|
|
35
|
-
- ruby: "2.7.
|
|
37
|
+
- ruby: "2.7.4"
|
|
36
38
|
gemfile: Gemfile.6.1.sqlite3
|
|
39
|
+
- ruby: "2.7.4"
|
|
40
|
+
gemfile: Gemfile.7.0.sqlite3
|
|
37
41
|
- ruby: "3.0.1"
|
|
38
42
|
gemfile: Gemfile.6.0.sqlite3
|
|
39
43
|
- ruby: "3.0.1"
|
|
40
44
|
gemfile: Gemfile.6.1.sqlite3
|
|
45
|
+
- ruby: "3.0.1"
|
|
46
|
+
gemfile: Gemfile.7.0.sqlite3
|
|
41
47
|
|
|
42
48
|
env:
|
|
43
49
|
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
|
@@ -50,12 +56,11 @@ jobs:
|
|
|
50
56
|
ruby-version: ${{ matrix.ruby }}
|
|
51
57
|
- name: Bundle
|
|
52
58
|
run: |
|
|
53
|
-
gem install bundler:2.
|
|
59
|
+
gem install bundler:2.2.27
|
|
54
60
|
bundle install --no-deployment
|
|
55
61
|
- name: Run tests
|
|
56
62
|
run: bundle exec rake spec
|
|
57
63
|
|
|
58
|
-
|
|
59
64
|
test_mysql:
|
|
60
65
|
runs-on: ubuntu-20.04
|
|
61
66
|
|
|
@@ -65,7 +70,7 @@ jobs:
|
|
|
65
70
|
env:
|
|
66
71
|
MYSQL_ROOT_PASSWORD: password
|
|
67
72
|
ports:
|
|
68
|
-
|
|
73
|
+
- 3306:3306
|
|
69
74
|
options: >-
|
|
70
75
|
--health-cmd="mysqladmin ping"
|
|
71
76
|
--health-interval=10s
|
|
@@ -80,7 +85,7 @@ jobs:
|
|
|
80
85
|
gemfile: Gemfile.4.2.mysql2
|
|
81
86
|
- ruby: "2.6.3"
|
|
82
87
|
gemfile: Gemfile.5.2.mysql2
|
|
83
|
-
- ruby: "2.7.
|
|
88
|
+
- ruby: "2.7.4"
|
|
84
89
|
gemfile: Gemfile.5.2.mysql2
|
|
85
90
|
|
|
86
91
|
env:
|
|
@@ -95,10 +100,10 @@ jobs:
|
|
|
95
100
|
- name: Install database client
|
|
96
101
|
run: |
|
|
97
102
|
sudo apt-get update
|
|
98
|
-
sudo apt-get install -y
|
|
103
|
+
sudo apt-get install -y mariadb-client libmariadbclient-dev
|
|
99
104
|
- name: Bundle
|
|
100
105
|
run: |
|
|
101
|
-
gem install bundler:2.
|
|
106
|
+
gem install bundler:2.2.27
|
|
102
107
|
bundle install --no-deployment
|
|
103
108
|
- name: Setup databases
|
|
104
109
|
run: |
|
|
@@ -106,7 +111,6 @@ jobs:
|
|
|
106
111
|
- name: Run tests
|
|
107
112
|
run: bundle exec rake spec
|
|
108
113
|
|
|
109
|
-
|
|
110
114
|
test_pg:
|
|
111
115
|
runs-on: ubuntu-20.04
|
|
112
116
|
|
|
@@ -137,12 +141,16 @@ jobs:
|
|
|
137
141
|
gemfile: Gemfile.5.2.pg
|
|
138
142
|
- ruby: "2.6.3"
|
|
139
143
|
gemfile: Gemfile.6.1.pg
|
|
140
|
-
- ruby: "2.7.
|
|
144
|
+
- ruby: "2.7.4"
|
|
141
145
|
gemfile: Gemfile.5.2.pg
|
|
142
|
-
- ruby: "2.7.
|
|
146
|
+
- ruby: "2.7.4"
|
|
143
147
|
gemfile: Gemfile.6.1.pg
|
|
148
|
+
- ruby: "2.7.4"
|
|
149
|
+
gemfile: Gemfile.7.0.pg
|
|
144
150
|
- ruby: "3.0.1"
|
|
145
151
|
gemfile: Gemfile.6.1.pg
|
|
152
|
+
- ruby: "3.0.1"
|
|
153
|
+
gemfile: Gemfile.7.0.pg
|
|
146
154
|
|
|
147
155
|
env:
|
|
148
156
|
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
|
@@ -158,7 +166,7 @@ jobs:
|
|
|
158
166
|
sudo apt-get install -y postgresql-client
|
|
159
167
|
- name: Bundle
|
|
160
168
|
run: |
|
|
161
|
-
gem install bundler:2.
|
|
169
|
+
gem install bundler:2.2.27
|
|
162
170
|
bundle install --no-deployment
|
|
163
171
|
- name: Setup databases
|
|
164
172
|
run: |
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.7.
|
|
1
|
+
2.7.4
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased changes
|
|
6
6
|
|
|
7
|
+
## 2.1.1 (2021-12-22)
|
|
8
|
+
|
|
9
|
+
* Fixed: Ruby compiler warning and suboptimal attribut name validation. Thanks to @remofrizsche.
|
|
10
|
+
|
|
11
|
+
## 2.1.0 (2021-12-22)
|
|
12
|
+
|
|
13
|
+
* Fixed: ActiveType now works for Rails 7.
|
|
14
|
+
|
|
7
15
|
## 2.0.0 (2021-11-24)
|
|
8
16
|
|
|
9
17
|
* Added: Casting is prevented when the base record has changes in its already loaded associations, because those would be lost. Option `force: true` can be used to override this and still do the cast (this is not recommended).
|
data/Gemfile.4.2.mysql2.lock
CHANGED
data/Gemfile.4.2.pg.lock
CHANGED
data/Gemfile.4.2.sqlite3.lock
CHANGED
data/Gemfile.5.2.mysql2.lock
CHANGED
data/Gemfile.5.2.pg.lock
CHANGED
data/Gemfile.5.2.sqlite3.lock
CHANGED
data/Gemfile.6.0.sqlite3.lock
CHANGED
data/Gemfile.6.1.pg.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
active_type (2.
|
|
4
|
+
active_type (2.1.2)
|
|
5
5
|
activerecord (>= 3.2)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -44,6 +44,7 @@ GEM
|
|
|
44
44
|
zeitwerk (2.4.2)
|
|
45
45
|
|
|
46
46
|
PLATFORMS
|
|
47
|
+
ruby
|
|
47
48
|
x86_64-linux
|
|
48
49
|
|
|
49
50
|
DEPENDENCIES
|
|
@@ -55,4 +56,4 @@ DEPENDENCIES
|
|
|
55
56
|
rspec (~> 3.4)
|
|
56
57
|
|
|
57
58
|
BUNDLED WITH
|
|
58
|
-
2.2.
|
|
59
|
+
2.2.27
|
data/Gemfile.6.1.sqlite3.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
active_type (2.
|
|
4
|
+
active_type (2.1.2)
|
|
5
5
|
activerecord (>= 3.2)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -44,6 +44,7 @@ GEM
|
|
|
44
44
|
zeitwerk (2.4.2)
|
|
45
45
|
|
|
46
46
|
PLATFORMS
|
|
47
|
+
ruby
|
|
47
48
|
x86_64-linux
|
|
48
49
|
|
|
49
50
|
DEPENDENCIES
|
|
@@ -55,4 +56,4 @@ DEPENDENCIES
|
|
|
55
56
|
sqlite3
|
|
56
57
|
|
|
57
58
|
BUNDLED WITH
|
|
58
|
-
2.2.
|
|
59
|
+
2.2.27
|
data/Gemfile.7.0.pg
ADDED
data/Gemfile.7.0.pg.lock
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
active_type (2.1.2)
|
|
5
|
+
activerecord (>= 3.2)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
activemodel (6.1.4.4)
|
|
11
|
+
activesupport (= 6.1.4.4)
|
|
12
|
+
activerecord (6.1.4.4)
|
|
13
|
+
activemodel (= 6.1.4.4)
|
|
14
|
+
activesupport (= 6.1.4.4)
|
|
15
|
+
activesupport (6.1.4.4)
|
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
|
+
i18n (>= 1.6, < 2)
|
|
18
|
+
minitest (>= 5.1)
|
|
19
|
+
tzinfo (~> 2.0)
|
|
20
|
+
zeitwerk (~> 2.3)
|
|
21
|
+
concurrent-ruby (1.1.9)
|
|
22
|
+
diff-lcs (1.4.4)
|
|
23
|
+
gemika (0.6.1)
|
|
24
|
+
i18n (1.8.11)
|
|
25
|
+
concurrent-ruby (~> 1.0)
|
|
26
|
+
minitest (5.15.0)
|
|
27
|
+
pg (1.2.3)
|
|
28
|
+
rake (13.0.6)
|
|
29
|
+
rspec (3.10.0)
|
|
30
|
+
rspec-core (~> 3.10.0)
|
|
31
|
+
rspec-expectations (~> 3.10.0)
|
|
32
|
+
rspec-mocks (~> 3.10.0)
|
|
33
|
+
rspec-core (3.10.1)
|
|
34
|
+
rspec-support (~> 3.10.0)
|
|
35
|
+
rspec-expectations (3.10.1)
|
|
36
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
37
|
+
rspec-support (~> 3.10.0)
|
|
38
|
+
rspec-mocks (3.10.2)
|
|
39
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
40
|
+
rspec-support (~> 3.10.0)
|
|
41
|
+
rspec-support (3.10.3)
|
|
42
|
+
tzinfo (2.0.4)
|
|
43
|
+
concurrent-ruby (~> 1.0)
|
|
44
|
+
zeitwerk (2.5.1)
|
|
45
|
+
|
|
46
|
+
PLATFORMS
|
|
47
|
+
ruby
|
|
48
|
+
|
|
49
|
+
DEPENDENCIES
|
|
50
|
+
active_type!
|
|
51
|
+
activerecord (~> 6.1.0)
|
|
52
|
+
gemika
|
|
53
|
+
pg
|
|
54
|
+
rake
|
|
55
|
+
rspec (~> 3.4)
|
|
56
|
+
|
|
57
|
+
BUNDLED WITH
|
|
58
|
+
2.1.4
|
data/Gemfile.7.0.sqlite3
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
active_type (2.1.2)
|
|
5
|
+
activerecord (>= 3.2)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
activemodel (6.1.4.4)
|
|
11
|
+
activesupport (= 6.1.4.4)
|
|
12
|
+
activerecord (6.1.4.4)
|
|
13
|
+
activemodel (= 6.1.4.4)
|
|
14
|
+
activesupport (= 6.1.4.4)
|
|
15
|
+
activesupport (6.1.4.4)
|
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
|
+
i18n (>= 1.6, < 2)
|
|
18
|
+
minitest (>= 5.1)
|
|
19
|
+
tzinfo (~> 2.0)
|
|
20
|
+
zeitwerk (~> 2.3)
|
|
21
|
+
concurrent-ruby (1.1.9)
|
|
22
|
+
diff-lcs (1.4.4)
|
|
23
|
+
gemika (0.6.1)
|
|
24
|
+
i18n (1.8.11)
|
|
25
|
+
concurrent-ruby (~> 1.0)
|
|
26
|
+
minitest (5.15.0)
|
|
27
|
+
rake (13.0.6)
|
|
28
|
+
rspec (3.10.0)
|
|
29
|
+
rspec-core (~> 3.10.0)
|
|
30
|
+
rspec-expectations (~> 3.10.0)
|
|
31
|
+
rspec-mocks (~> 3.10.0)
|
|
32
|
+
rspec-core (3.10.1)
|
|
33
|
+
rspec-support (~> 3.10.0)
|
|
34
|
+
rspec-expectations (3.10.1)
|
|
35
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
36
|
+
rspec-support (~> 3.10.0)
|
|
37
|
+
rspec-mocks (3.10.2)
|
|
38
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
39
|
+
rspec-support (~> 3.10.0)
|
|
40
|
+
rspec-support (3.10.3)
|
|
41
|
+
sqlite3 (1.4.2)
|
|
42
|
+
tzinfo (2.0.4)
|
|
43
|
+
concurrent-ruby (~> 1.0)
|
|
44
|
+
zeitwerk (2.5.1)
|
|
45
|
+
|
|
46
|
+
PLATFORMS
|
|
47
|
+
ruby
|
|
48
|
+
|
|
49
|
+
DEPENDENCIES
|
|
50
|
+
active_type!
|
|
51
|
+
activerecord (~> 6.1.0)
|
|
52
|
+
gemika
|
|
53
|
+
rake
|
|
54
|
+
rspec (~> 3.4)
|
|
55
|
+
sqlite3
|
|
56
|
+
|
|
57
|
+
BUNDLED WITH
|
|
58
|
+
2.1.4
|
data/README.md
CHANGED
|
@@ -53,7 +53,7 @@ end
|
|
|
53
53
|
|
|
54
54
|
### A note on Rails 5+
|
|
55
55
|
|
|
56
|
-
Rails 5 comes with its own implementation of `.attribute`. This implementation is functionally very
|
|
56
|
+
Rails 5+ comes with its own implementation of `.attribute`. This implementation is functionally very
|
|
57
57
|
similar, but not identical to ActiveType's.
|
|
58
58
|
|
|
59
59
|
We have decided to continue to use our own implementation. This means that if you use ActiveType, `ActiveRecord::Base.attribute` will be overriden.
|
data/active_type.gemspec
CHANGED
|
@@ -10,16 +10,17 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.summary = 'Make any Ruby object quack like ActiveRecord'
|
|
11
11
|
s.description = s.summary
|
|
12
12
|
s.license = 'MIT'
|
|
13
|
+
s.metadata = { 'rubygems_mfa_required' => 'true' }
|
|
13
14
|
|
|
14
15
|
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
15
16
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
16
17
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
17
18
|
s.require_paths = ["lib"]
|
|
18
19
|
|
|
19
|
-
s.add_development_dependency "bundler", "
|
|
20
|
+
s.add_development_dependency "bundler", ">= 1.5"
|
|
20
21
|
s.add_development_dependency "rake"
|
|
21
22
|
|
|
22
23
|
s.add_runtime_dependency('activerecord', '>= 3.2')
|
|
23
24
|
|
|
24
|
-
s.required_ruby_version = '>=
|
|
25
|
+
s.required_ruby_version = '>= 2.5.0'
|
|
25
26
|
end
|
|
@@ -16,11 +16,15 @@ module ActiveType
|
|
|
16
16
|
@allow_destroy = options.fetch(:allow_destroy, false)
|
|
17
17
|
@reject_if = options.delete(:reject_if)
|
|
18
18
|
@options = options.dup
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
|
|
20
|
+
@index_errors = case
|
|
21
|
+
when ActiveRecord::VERSION::MAJOR < 5
|
|
22
|
+
@options[:index_errors]
|
|
23
|
+
when ActiveRecord::VERSION::MAJOR < 7
|
|
24
|
+
@options[:index_errors] || ActiveRecord::Base.index_nested_attribute_errors
|
|
25
|
+
else
|
|
26
|
+
@options[:index_errors] || ActiveRecord.index_nested_attribute_errors
|
|
27
|
+
end
|
|
24
28
|
end
|
|
25
29
|
|
|
26
30
|
def assign_attributes(parent, attributes)
|
|
@@ -120,7 +120,7 @@ module ActiveType
|
|
|
120
120
|
type_name = base_class.type_for_attribute(inheritance_column).cast(type_name)
|
|
121
121
|
subclass = begin
|
|
122
122
|
if store_full_sti_class
|
|
123
|
-
|
|
123
|
+
type_name.constantize
|
|
124
124
|
else
|
|
125
125
|
compute_type(type_name)
|
|
126
126
|
end
|
data/lib/active_type/version.rb
CHANGED
|
@@ -112,7 +112,7 @@ module ActiveType
|
|
|
112
112
|
end
|
|
113
113
|
|
|
114
114
|
def validate_attribute_name!(name)
|
|
115
|
-
unless name.to_s =~ /\A[A-z0-9_]*\z/
|
|
115
|
+
unless name.to_s =~ /\A[A-Za-z0-9_]*\z/
|
|
116
116
|
raise InvalidAttributeNameError.new("'#{name}' is not a valid name for a virtual attribute")
|
|
117
117
|
end
|
|
118
118
|
end
|
|
@@ -273,7 +273,7 @@ module ActiveType
|
|
|
273
273
|
if value.is_a?(String) && value.length > 50
|
|
274
274
|
"#{value[0, 50]}...".inspect
|
|
275
275
|
elsif value.is_a?(Date) || value.is_a?(Time)
|
|
276
|
-
%("#{value.
|
|
276
|
+
%("#{value.to_formatted_s(:db)}")
|
|
277
277
|
elsif value.is_a?(Array) && value.size > 10
|
|
278
278
|
inspected = value.first(10).inspect
|
|
279
279
|
%(#{inspected[0...-1]}, ...])
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_type
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tobias Kraze
|
|
@@ -9,20 +9,20 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2022-05-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- - "
|
|
18
|
+
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: '1.5'
|
|
21
21
|
type: :development
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
|
-
- - "
|
|
25
|
+
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '1.5'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
@@ -83,6 +83,10 @@ files:
|
|
|
83
83
|
- Gemfile.6.1.pg.lock
|
|
84
84
|
- Gemfile.6.1.sqlite3
|
|
85
85
|
- Gemfile.6.1.sqlite3.lock
|
|
86
|
+
- Gemfile.7.0.pg
|
|
87
|
+
- Gemfile.7.0.pg.lock
|
|
88
|
+
- Gemfile.7.0.sqlite3
|
|
89
|
+
- Gemfile.7.0.sqlite3.lock
|
|
86
90
|
- Gemfile.lock
|
|
87
91
|
- LICENSE
|
|
88
92
|
- README.md
|
|
@@ -110,7 +114,8 @@ files:
|
|
|
110
114
|
homepage: https://github.com/makandra/active_type
|
|
111
115
|
licenses:
|
|
112
116
|
- MIT
|
|
113
|
-
metadata:
|
|
117
|
+
metadata:
|
|
118
|
+
rubygems_mfa_required: 'true'
|
|
114
119
|
post_install_message:
|
|
115
120
|
rdoc_options: []
|
|
116
121
|
require_paths:
|
|
@@ -119,14 +124,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
119
124
|
requirements:
|
|
120
125
|
- - ">="
|
|
121
126
|
- !ruby/object:Gem::Version
|
|
122
|
-
version:
|
|
127
|
+
version: 2.5.0
|
|
123
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
129
|
requirements:
|
|
125
130
|
- - ">="
|
|
126
131
|
- !ruby/object:Gem::Version
|
|
127
132
|
version: '0'
|
|
128
133
|
requirements: []
|
|
129
|
-
rubygems_version: 3.
|
|
134
|
+
rubygems_version: 3.1.6
|
|
130
135
|
signing_key:
|
|
131
136
|
specification_version: 4
|
|
132
137
|
summary: Make any Ruby object quack like ActiveRecord
|