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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4475684e4eba21244f0aa189b876d00242379a3e4dac260b7a730eacbe7958b
4
- data.tar.gz: 0a5ed0660a15ec4493dde2fc3f831813e804b5a18ece540921c9ac50d89e5df1
3
+ metadata.gz: 4ec60ebed2540b661f5ce367290b0441ecee6bfd69f2e72278c8fca32962d512
4
+ data.tar.gz: 5904f0450ed47412698053e866d2eef74f6e5a39513d98f8b2ad859768ec42af
5
5
  SHA512:
6
- metadata.gz: a66ac2b24d20bef464fd9deb2b654eaf2932f6ae7893d4025ae35665e926d156a92dafe13cb424cb71414c65223c475fb19f713ef3e14d21a172581545c484e8
7
- data.tar.gz: bd3f65931e6e64296b555f68e96907bb38c3fc283c1e29ad9324188ab0370767ea4ceba4cf17d37b9e28e0bf09786973bb77afc2787a19d9a0ce83d31f1bcf38
6
+ metadata.gz: 2184fd32412ae0cab0dce973a6c74ad5f08f16f23d330ce7c90645667781fbf6b074eed982f9db7b088455ae1ed96d05ad90f1410f62e46c619cfefba9dfd30e
7
+ data.tar.gz: c8af256d045f57ce250f2bf2aa17c49c68facf7d61ff99787b5de2c3ced32bfb715de0e3b13fe28d54d79ffbd1400e3e9a195d13fd5c2b26fdac2804b06f41f8
@@ -1,3 +1,3 @@
1
1
  module StoreBaseSTIClass
2
- VERSION = '3.2.0'.freeze
2
+ VERSION = '3.3.0'.freeze
3
3
  end
@@ -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.1.x with the ability to store the actual class (instead of the base class) in
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.2'])
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.2.0
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-02-29 00:00:00.000000000 Z
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.2'
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.2'
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.3
67
+ rubygems_version: 3.5.7
68
68
  signing_key:
69
69
  specification_version: 4
70
- summary: Modifies ActiveRecord 6.1.x - 7.1.x with the ability to store the actual
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: []