store_base_sti_class 3.4.0 → 3.6.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: d70181898de30199ef2126e47928e8d2e0c9d921df8a401151d97c82e587876c
4
- data.tar.gz: a3f936d3c3651ad27471763d4ae2912a84458c11e070ea6a8d682bce1f618a37
3
+ metadata.gz: 65ca16a9061aa39575b408a9096604087ad6199ba3b253fa894df2355925d7bb
4
+ data.tar.gz: b172ff483bb77cb05e144ffceb1ba6bb9130ffaa9c95e8add872b840d73ae358
5
5
  SHA512:
6
- metadata.gz: b5eb49473524cf3d97aa12b7df4efc2b11ecf629f39bbd4e7c75bc8935955040f2317cd6190f6c2ed14380373842245beddd81346ebe4421d55174f8aafc7b92
7
- data.tar.gz: 1ac72aa032744498042bb4ca9eee636f7e736b6001f0ee3b0f3d60ecd5a677005e5b043df53a10ba05f7342b85ce1e08f273876c8bf5bcf71a6a4baf35a004d7
6
+ metadata.gz: 977fda28cc393c18b19966255831fc9f79d9c533dceda6b4e604f53311326cb3b9bfeda7aca448b3992caee2e7f7d8e347c01991140e0fb8f89ae15485ad6cb1
7
+ data.tar.gz: 15cab1db7bf54a5ec0523cc22876a9841b028647643d1d0a2bae2a222bd238030c1ce77bf8e09acc74d7fa786de5cf373c23e705f29debc079eab79473d90382
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2011-2025 AppFolio, Inc
1
+ Copyright (c) 2011-2026 AppFolio, Inc
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -1,3 +1,3 @@
1
1
  module StoreBaseSTIClass
2
- VERSION = '3.4.0'.freeze
2
+ VERSION = '3.6.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.2.x with the ability to store the actual class (instead of the base class) in
18
+ Modifies ActiveRecord 7.2.x - 8.1.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'
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
23
23
  spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
24
24
  spec.require_paths = ['lib']
25
25
 
26
- spec.required_ruby_version = Gem::Requirement.new('< 3.5')
26
+ spec.required_ruby_version = Gem::Requirement.new('< 4.1')
27
27
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
28
28
 
29
- spec.add_dependency('activerecord', ['>= 7', '< 8.1'])
29
+ spec.add_dependency('activerecord', ['>= 7.2', '< 8.2'])
30
30
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: store_base_sti_class
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-05-02 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: activerecord
@@ -15,20 +15,20 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '7'
18
+ version: '7.2'
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: '8.1'
21
+ version: '8.2'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: '7'
28
+ version: '7.2'
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
- version: '8.1'
31
+ version: '8.2'
32
32
  description: |
33
33
  ActiveRecord has always stored the base class in polymorphic _type columns when using STI. This can have non-trivial
34
34
  performance implications in certain cases. This gem adds the 'store_base_sti_class' configuration option which
@@ -55,15 +55,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
55
55
  requirements:
56
56
  - - "<"
57
57
  - !ruby/object:Gem::Version
58
- version: '3.5'
58
+ version: '4.1'
59
59
  required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
63
  version: '0'
64
64
  requirements: []
65
- rubygems_version: 3.6.3
65
+ rubygems_version: 4.0.5
66
66
  specification_version: 4
67
- summary: Modifies ActiveRecord 6.1.x - 7.2.x with the ability to store the actual
67
+ summary: Modifies ActiveRecord 7.2.x - 8.1.x with the ability to store the actual
68
68
  class (instead of the base class) in polymorhic _type columns when using STI.
69
69
  test_files: []