dependent-auto-rails 0.2.2 → 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 +4 -4
- data/CHANGELOG.md +23 -0
- data/lib/dependent-auto-rails/activerecord/reflection.rb +4 -4
- data/lib/dependent-auto-rails/version.rb +1 -1
- metadata +7 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '026486587cd94b940eeb796f78ad7ecd8cda140849749d67cc1de2d8895d0e79'
|
|
4
|
+
data.tar.gz: e13dd6cefa75d75f047910e95f60036707aa95829f28158c4436ed26b7e0a3c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d73bda326605202536ca6951d15815af375bf04e2a870fc21f641752ff66d7f1624a662c2249604e115dcf3cb82fa97f30bd80b59aa888d177815d9d9424a0d6
|
|
7
|
+
data.tar.gz: 8295c547aaa87a816e1444c324c201406d8bfce12a30573112f226d161f7532333d4ea7babaae07d915714c3a4abf3ab3e2f08f83d592d7c08ef35830ad3fa13
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [Unreleased]
|
|
2
|
+
|
|
3
|
+
## [0.3.0] - 17/01/2026
|
|
4
|
+
|
|
5
|
+
- Drop support for Rails 7.0 and 7.1
|
|
6
|
+
|
|
7
|
+
## [0.2.3] - 31/12/2024
|
|
8
|
+
|
|
9
|
+
- Require Ruby 3.2 or later
|
|
10
|
+
- Support Rails 8.0
|
|
11
|
+
|
|
12
|
+
## [0.2.2] - 03/03/2024
|
|
13
|
+
|
|
14
|
+
- Documentation updates
|
|
15
|
+
|
|
16
|
+
## [0.2.1] - 02/03/2024
|
|
17
|
+
|
|
18
|
+
- Documentation updates
|
|
19
|
+
|
|
20
|
+
## [0.2.0] - 02/03/2024
|
|
21
|
+
|
|
22
|
+
- Documentation updates
|
|
23
|
+
|
|
1
24
|
## [0.1.9] - 21/02/2024
|
|
2
25
|
|
|
3
26
|
- Initial release
|
|
@@ -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
|
metadata
CHANGED
|
@@ -1,44 +1,28 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependent-auto-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joshua Young
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activerecord
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '7'
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '7'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: sqlite3
|
|
29
14
|
requirement: !ruby/object:Gem::Requirement
|
|
30
15
|
requirements:
|
|
31
16
|
- - ">="
|
|
32
17
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
34
|
-
type: :
|
|
18
|
+
version: '7.2'
|
|
19
|
+
type: :runtime
|
|
35
20
|
prerelease: false
|
|
36
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
22
|
requirements:
|
|
38
23
|
- - ">="
|
|
39
24
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
41
|
-
description:
|
|
25
|
+
version: '7.2'
|
|
42
26
|
email:
|
|
43
27
|
- djry1999@gmail.com
|
|
44
28
|
executables: []
|
|
@@ -62,7 +46,6 @@ metadata:
|
|
|
62
46
|
homepage_uri: https://github.com/joshuay03/dependent-auto-rails
|
|
63
47
|
source_code_uri: https://github.com/joshuay03/dependent-auto-rails
|
|
64
48
|
changelog_uri: https://github.com/joshuay03/dependent-auto-rails/blob/master/CHANGELOG.md
|
|
65
|
-
post_install_message:
|
|
66
49
|
rdoc_options: []
|
|
67
50
|
require_paths:
|
|
68
51
|
- lib
|
|
@@ -70,15 +53,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
70
53
|
requirements:
|
|
71
54
|
- - ">="
|
|
72
55
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: '3'
|
|
56
|
+
version: '3.2'
|
|
74
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
58
|
requirements:
|
|
76
59
|
- - ">="
|
|
77
60
|
- !ruby/object:Gem::Version
|
|
78
61
|
version: '0'
|
|
79
62
|
requirements: []
|
|
80
|
-
rubygems_version:
|
|
81
|
-
signing_key:
|
|
63
|
+
rubygems_version: 4.0.3
|
|
82
64
|
specification_version: 4
|
|
83
65
|
summary: Automatically decides between :destroy and :delete / :delete_all for your
|
|
84
66
|
Rails associations.
|