store_base_sti_class 3.2.0 → 3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/store_base_sti_class/version.rb +1 -1
- data/store_base_sti_class.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ec60ebed2540b661f5ce367290b0441ecee6bfd69f2e72278c8fca32962d512
|
4
|
+
data.tar.gz: 5904f0450ed47412698053e866d2eef74f6e5a39513d98f8b2ad859768ec42af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2184fd32412ae0cab0dce973a6c74ad5f08f16f23d330ce7c90645667781fbf6b074eed982f9db7b088455ae1ed96d05ad90f1410f62e46c619cfefba9dfd30e
|
7
|
+
data.tar.gz: c8af256d045f57ce250f2bf2aa17c49c68facf7d61ff99787b5de2c3ced32bfb715de0e3b13fe28d54d79ffbd1400e3e9a195d13fd5c2b26fdac2804b06f41f8
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
compatibility.'
|
16
16
|
MSG
|
17
17
|
spec.summary = <<~MSG
|
18
|
-
Modifies ActiveRecord 6.1.x - 7.
|
18
|
+
Modifies ActiveRecord 6.1.x - 7.2.x with the ability to store the actual class (instead of the base class) in
|
19
19
|
polymorhic _type columns when using STI.
|
20
20
|
MSG
|
21
21
|
spec.homepage = 'https://github.com/appfolio/store_base_sti_class'
|
@@ -26,5 +26,5 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.required_ruby_version = Gem::Requirement.new('< 3.4')
|
27
27
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
28
28
|
|
29
|
-
spec.add_dependency('activerecord', ['>= 6.1', '< 7.
|
29
|
+
spec.add_dependency('activerecord', ['>= 6.1', '< 7.3'])
|
30
30
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: store_base_sti_class
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AppFolio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-01 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: '6.1'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '7.
|
22
|
+
version: '7.3'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '6.1'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '7.
|
32
|
+
version: '7.3'
|
33
33
|
description: |
|
34
34
|
ActiveRecord has always stored the base class in polymorphic _type columns when using STI. This can have non-trivial
|
35
35
|
performance implications in certain cases. This gem adds the 'store_base_sti_class' configuration option which
|
@@ -64,9 +64,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
- !ruby/object:Gem::Version
|
65
65
|
version: '0'
|
66
66
|
requirements: []
|
67
|
-
rubygems_version: 3.5.
|
67
|
+
rubygems_version: 3.5.7
|
68
68
|
signing_key:
|
69
69
|
specification_version: 4
|
70
|
-
summary: Modifies ActiveRecord 6.1.x - 7.
|
70
|
+
summary: Modifies ActiveRecord 6.1.x - 7.2.x with the ability to store the actual
|
71
71
|
class (instead of the base class) in polymorhic _type columns when using STI.
|
72
72
|
test_files: []
|