dependent-auto-rails 0.2.1 → 0.2.2
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/README.md +1 -1
- data/lib/dependent-auto-rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6efa1cf923a9e588a447a663f138eec13d170870d89e1094d3a9cb87ace1838b
|
|
4
|
+
data.tar.gz: ce625776f26ef1c60886fa42bd7f4ca6e86da50e61fd8349562009b771bcf0a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c1ee47b3eb695cc559cccdd922de6e70ebf87b12ac3810137cedcde4743af1681457445804f8bac366204b39735a381ed4d68ac82d9b0db5681d079a837ef07
|
|
7
|
+
data.tar.gz: e3014ef0129f2a82c1479e9fc4fe94b9b3c7684d9f93fd37543e0f04351f3fc4df3c2dba9dd8584150fd9305ad7ced379d2a6a59043e541833205c5c5c34d077
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This gem provides a new `dependent` option for ActiveRecord associations, `:auto
|
|
|
7
7
|
|
|
8
8
|
This is useful since `dependent: :destroy` always initialises the associated records in order to execute their callbacks regardless of whether or not there are any defined, but is often the go-to option since it is the safest. This can be expensive if there are many records to destroy.
|
|
9
9
|
|
|
10
|
-
It is also useful since a model's associations are rarely updated, but it's business logic can change frequently. This means that if
|
|
10
|
+
It is also useful since a model's associations are rarely updated, but it's business logic can change frequently. This means that if callbacks are added or removed on the associated model, the `dependent` option on the parent model's association may need to be updated to reflect this. Using `dependent: :auto` will automatically select the appropriate `dependent` option based on the current state of the model.
|
|
11
11
|
|
|
12
12
|
**NOTE**: The `:auto` option **ONLY** decides between `:destroy` and `:delete` / `:delete_all`. It does not use any of the other `dependent` options:
|
|
13
13
|
- `:nullify`
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependent-auto-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joshua Young
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|