interactor_support 1.0.2 → 1.0.4

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: 9389f81b3832c245eac6c1f850a1b55c6baaebbc01be44eccd8d4f31c45bc731
4
- data.tar.gz: c3ee7cd401d9d744e51208bc9763cb417e25410e4e2797bb51676aece17ffeec
3
+ metadata.gz: 4d6d8c9f46a3e48520652cdb83a9257d487a3411feef0b1efd69c1fc4a209c03
4
+ data.tar.gz: 31b939d573a1dc042b671304ec777bf4a8bf53ad61bd3b4d63fccc3fd4dd2806
5
5
  SHA512:
6
- metadata.gz: 67218c44b1b89e1173abba43d298742eaa2bf59d7a884c5e65017c855f80a4ace05a2423232325395085f8e70c9d7f981e6ef39d267368e9eaf7c2c32fb7e57e
7
- data.tar.gz: 0c8ff1bac440c0cd7f07d4e3f9463109986ce92240aaa5725e5d405f21c62040d6ea7509e1de2b951184db39cef977c181f01c73ed69895e599b67dda093628c
6
+ metadata.gz: 2cf4e789be122df812109df549d3d94a4cf685af0a85eb3fa3d47e811fc73d2231a4fd5af95a2e3c397505102c363bb831df716f16fe701fa0e2fd33e586e757
7
+ data.tar.gz: 8d6e5ee59b6c0523d0d7a9931d6b0ee4f1f98c7aa7d87aabfd45f8dcad8b9f7831444030803abc98bf0594b87a9e084cc9285e8f7382dd378f0d68f4fdc79823
data/.prettierignore ADDED
@@ -0,0 +1 @@
1
+ .yardopts
data/.yardopts ADDED
@@ -0,0 +1,19 @@
1
+ lib/interactor_support.rb
2
+ lib/interactor_support/**/*.rb
3
+
4
+ --title
5
+ InteractorSupport Documentation
6
+
7
+ --markup
8
+ markdown
9
+
10
+ --no-private
11
+ --no-yardopts
12
+
13
+ --exclude
14
+ bin/
15
+ spec/
16
+ test/
17
+ config/
18
+ db/
19
+ vendor/
data/CHANGELOG.md CHANGED
@@ -11,3 +11,13 @@
11
11
  ## [1.0.2] - 2025-03-28
12
12
 
13
13
  - Added support for mixing symbols and procs in the transformable concern
14
+
15
+ ## [1.0.3] - 2025-04-02
16
+
17
+ - Added support for rewriting attribute names in a request object
18
+ - Better support for type coersion, using Active model + Array, Hash, and Symbol
19
+ - Better support for `AnyClass` type validations
20
+
21
+ ## [1.0.4] - 2025-04-05
22
+
23
+ - Added the organizable concern