effective_resources 2.36.4 → 2.36.5
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/app/models/concerns/acts_as_wizard.rb +7 -0
- data/lib/effective_resources/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '086e9b2c0d5f9e843a39a880c48ca7467c454d96d426b7a789f474ed6db2d37f'
|
|
4
|
+
data.tar.gz: 7ad84343ab0180ecb8b2c73a767af2904f23b27f4d497fe3f45f729abed23337
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf277644616c40600656c124b3982f5a39e27a87805b2b38d11adde65ae58672d974488d7745ee141724cf05a8a9a2dac9b37d8a42e1cfd05177a358e4be63dc
|
|
7
|
+
data.tar.gz: 0c70a0926f46a18b73edb4a045bd7b1764dccab54e610aa4e389ea129024c7b1e9f48e1c9f2b660d2087e4ea18b45dffbdbbc2f90764176141032058bf329e12
|
|
@@ -219,6 +219,13 @@ module ActsAsWizard
|
|
|
219
219
|
end
|
|
220
220
|
end
|
|
221
221
|
|
|
222
|
+
def render_partial_path
|
|
223
|
+
raise("expected render_path to be set") unless render_path.present?
|
|
224
|
+
raise("expected render_step to be set") unless render_step.present?
|
|
225
|
+
|
|
226
|
+
"#{render_path}/#{render_step}"
|
|
227
|
+
end
|
|
228
|
+
|
|
222
229
|
private
|
|
223
230
|
|
|
224
231
|
def can_revisit_completed_steps(step)
|