dependent-auto-rails 0.2.3 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 23dc937247c213455fce7d45dc1a5578bb8921119218375ff21df91500ba8b69
4
- data.tar.gz: 89c3936009c80b0abf80dea9bc41bc1bb8eb0d0484a7f67726a206564aa4d675
3
+ metadata.gz: '026486587cd94b940eeb796f78ad7ecd8cda140849749d67cc1de2d8895d0e79'
4
+ data.tar.gz: e13dd6cefa75d75f047910e95f60036707aa95829f28158c4436ed26b7e0a3c5
5
5
  SHA512:
6
- metadata.gz: edd605a349e0239dac40fc945ec541341737fb650ad79c31b1c00181078abe430bd8723191d79eb5b29557dbacc3d08ba9bf55baa938ad2b16f036cf19fb4ab4
7
- data.tar.gz: d845649a2472f4fb6f9d6ea6b05099de111a820b8d013cfdb6e8950fc34e1add1b7c8626857718e4c8aed72654a8905d46bd013e94fa49083076e09cf3096749
6
+ metadata.gz: d73bda326605202536ca6951d15815af375bf04e2a870fc21f641752ff66d7f1624a662c2249604e115dcf3cb82fa97f30bd80b59aa888d177815d9d9424a0d6
7
+ data.tar.gz: 8295c547aaa87a816e1444c324c201406d8bfce12a30573112f226d161f7532333d4ea7babaae07d915714c3a4abf3ab3e2f08f83d592d7c08ef35830ad3fa13
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.3.0] - 17/01/2026
4
+
5
+ - Drop support for Rails 7.0 and 7.1
6
+
1
7
  ## [0.2.3] - 31/12/2024
2
8
 
3
9
  - Require Ruby 3.2 or later
@@ -63,28 +63,28 @@ module ActiveRecord
63
63
 
64
64
  class BelongsToReflection < AssociationReflection
65
65
  def initialize(...)
66
- super(...)
66
+ super
67
67
  convert_options_to_dynamic_reflection_options!
68
68
  end
69
69
  end
70
70
 
71
71
  class HasOneReflection < AssociationReflection
72
72
  def initialize(...)
73
- super(...)
73
+ super
74
74
  convert_options_to_dynamic_reflection_options!
75
75
  end
76
76
  end
77
77
 
78
78
  class HasManyReflection < AssociationReflection
79
79
  def initialize(...)
80
- super(...)
80
+ super
81
81
  convert_options_to_dynamic_reflection_options!
82
82
  end
83
83
  end
84
84
 
85
85
  class HasAndBelongsToManyReflection < AssociationReflection
86
86
  def initialize(...)
87
- super(...)
87
+ super
88
88
  convert_options_to_dynamic_reflection_options!
89
89
  end
90
90
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DependentAutoRails
4
- VERSION = "0.2.3"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependent-auto-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Young
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2024-12-31 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,28 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '7'
18
+ version: '7.2'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - ">="
24
24
  - !ruby/object:Gem::Version
25
- version: '7'
26
- - !ruby/object:Gem::Dependency
27
- name: sqlite3
28
- requirement: !ruby/object:Gem::Requirement
29
- requirements:
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: '2.1'
33
- type: :development
34
- prerelease: false
35
- version_requirements: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: '2.1'
25
+ version: '7.2'
40
26
  email:
41
27
  - djry1999@gmail.com
42
28
  executables: []
@@ -74,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
60
  - !ruby/object:Gem::Version
75
61
  version: '0'
76
62
  requirements: []
77
- rubygems_version: 3.6.2
63
+ rubygems_version: 4.0.3
78
64
  specification_version: 4
79
65
  summary: Automatically decides between :destroy and :delete / :delete_all for your
80
66
  Rails associations.