activeinteractor 1.2.0 → 1.2.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47d39868b8ed69a4ae27d9cf931e42ed6e5a5daa893a7adc0c6b696bd0b4035d
|
|
4
|
+
data.tar.gz: 9e4ae3e6102d6f6ead6d8fb4af150dc8d67124adfba1afd26420a54e57708cc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06e1686b7e98a6ed13f136e5f847c836a4f018ba4a89c1b42e6666a4063600c22c2b6b7ad48a378462a9b0fc18f3dd28d88325bd7344c9a9647c2274804d1e01
|
|
7
|
+
data.tar.gz: 925e3b0ab0a9562efe52d4d30d55b71b327d9169f02eed1ab1b22b9c72caa00ca5c72b1a587782f0d7c9e820465739538240666263dc9a2c999037e00e060710
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning].
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.2.1] - 2022-09-26
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- [\#358] Typo in generator template name
|
|
15
|
+
|
|
16
|
+
## [v1.1.7] - 2022-09-26
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- [\#358] Typo in generator template name
|
|
21
|
+
|
|
10
22
|
## [v1.2.0] - 2022-09-08
|
|
11
23
|
|
|
12
24
|
### Added
|
|
@@ -258,8 +270,10 @@ and this project adheres to [Semantic Versioning].
|
|
|
258
270
|
|
|
259
271
|
<!-- versions -->
|
|
260
272
|
|
|
261
|
-
[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.2.
|
|
273
|
+
[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.2.1...HEAD
|
|
274
|
+
[v1.2.1]: https://github.com/aaronmallen/activeinteractor/compare/v1.2.0...v1.2.1
|
|
262
275
|
[v1.2.0]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.6...v1.2.0
|
|
276
|
+
[v1.1.7]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.6...v1.1.7
|
|
263
277
|
[v1.1.6]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.4...v1.1.6
|
|
264
278
|
[v1.1.4]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.3...v1.1.4
|
|
265
279
|
[v1.1.3]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.2...v1.1.3
|
|
@@ -16,7 +16,7 @@ module ActiveInteractor
|
|
|
16
16
|
|
|
17
17
|
# The ActiveInterctor patch version number
|
|
18
18
|
# @return [Integer] The ActiveInteractor patch version number
|
|
19
|
-
PATCH =
|
|
19
|
+
PATCH = 1
|
|
20
20
|
|
|
21
21
|
# The ActiveInterctor pre-release version
|
|
22
22
|
# @return [String | nil] The ActiveInteractor pre-release version
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activeinteractor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aaron Allen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|
|
@@ -156,7 +156,7 @@ files:
|
|
|
156
156
|
- lib/rails/generators/templates/context_test_unit.erb
|
|
157
157
|
- lib/rails/generators/templates/interactor.erb
|
|
158
158
|
- lib/rails/generators/templates/interactor_spec.erb
|
|
159
|
-
- lib/rails/generators/templates/
|
|
159
|
+
- lib/rails/generators/templates/interactor_test_unit.erb
|
|
160
160
|
- lib/rails/generators/templates/organizer.erb
|
|
161
161
|
- spec/active_interactor/base_spec.rb
|
|
162
162
|
- spec/active_interactor/config_spec.rb
|
|
@@ -209,10 +209,10 @@ licenses:
|
|
|
209
209
|
- MIT
|
|
210
210
|
metadata:
|
|
211
211
|
bug_tracker_uri: https://github.com/aaronmallen/activeinteractor/issues
|
|
212
|
-
changelog_uri: https://github.com/aaronmallen/activeinteractor/blob/v1.2.
|
|
213
|
-
documentation_uri: https://www.rubydoc.info/gems/activeinteractor/1.2.
|
|
212
|
+
changelog_uri: https://github.com/aaronmallen/activeinteractor/blob/v1.2.1/CHANGELOG.md
|
|
213
|
+
documentation_uri: https://www.rubydoc.info/gems/activeinteractor/1.2.1
|
|
214
214
|
hompage_uri: https://github.com/aaronmallen/activeinteractor
|
|
215
|
-
source_code_uri: https://github.com/aaronmallen/activeinteractor/tree/v1.2.
|
|
215
|
+
source_code_uri: https://github.com/aaronmallen/activeinteractor/tree/v1.2.1
|
|
216
216
|
wiki_uri: https://github.com/aaronmallen/activeinteractor/wiki
|
|
217
217
|
post_install_message:
|
|
218
218
|
rdoc_options: []
|
|
@@ -234,49 +234,49 @@ signing_key:
|
|
|
234
234
|
specification_version: 4
|
|
235
235
|
summary: Ruby interactors with ActiveModel::Validations
|
|
236
236
|
test_files:
|
|
237
|
-
- spec/integration/
|
|
238
|
-
- spec/integration/
|
|
237
|
+
- spec/integration/a_basic_organizer_spec.rb
|
|
238
|
+
- spec/integration/an_organizer_with_failing_nested_organizer_spec.rb
|
|
239
239
|
- spec/integration/an_organizer_with_after_callbacks_deferred_spec.rb
|
|
240
|
+
- spec/integration/an_interactor_with_before_perform_callbacks_spec.rb
|
|
241
|
+
- spec/integration/an_organizer_with_after_each_callbacks_spec.rb
|
|
242
|
+
- spec/integration/an_organizer_with_conditionally_organized_interactors_spec.rb
|
|
243
|
+
- spec/integration/active_record_integration_spec.rb
|
|
240
244
|
- spec/integration/an_organizer_with_before_each_callbacks_spec.rb
|
|
241
|
-
- spec/integration/
|
|
245
|
+
- spec/integration/an_organizer_with_all_perform_callbacks.rb
|
|
246
|
+
- spec/integration/a_failing_interactor_spec.rb
|
|
242
247
|
- spec/integration/an_organizer_with_around_each_callbacks_spec.rb
|
|
243
|
-
- spec/integration/
|
|
248
|
+
- spec/integration/an_interactor_with_validations_on_called_spec.rb
|
|
249
|
+
- spec/integration/an_interactor_with_after_context_validation_callbacks_spec.rb
|
|
250
|
+
- spec/integration/an_interactor_with_before_rollback_callbacks_spec.rb
|
|
251
|
+
- spec/integration/an_organizer_performing_in_parallel_spec.rb
|
|
252
|
+
- spec/integration/an_interactor_with_around_rollback_callbacks_spec.rb
|
|
244
253
|
- spec/integration/an_interactor_with_an_existing_context_class_spec.rb
|
|
245
|
-
- spec/integration/an_interactor_with_validations_on_calling_spec.rb
|
|
246
|
-
- spec/integration/an_interactor_with_before_perform_callbacks_spec.rb
|
|
247
254
|
- spec/integration/an_organizer_with_options_callbacks_spec.rb
|
|
248
|
-
- spec/integration/an_interactor_with_around_perform_callbacks_spec.rb
|
|
249
|
-
- spec/integration/an_organizer_with_all_perform_callbacks.rb
|
|
250
|
-
- spec/integration/an_organizer_containing_organizer_with_after_callbacks_deferred_spec.rb
|
|
251
255
|
- spec/integration/an_interactor_with_after_rollback_callbacks_spec.rb
|
|
252
|
-
- spec/integration/
|
|
253
|
-
- spec/integration/
|
|
254
|
-
- spec/integration/
|
|
255
|
-
- spec/integration/an_interactor_with_before_rollback_callbacks_spec.rb
|
|
256
|
-
- spec/integration/an_interactor_with_validations_on_called_spec.rb
|
|
256
|
+
- spec/integration/an_interactor_with_validations_on_calling_spec.rb
|
|
257
|
+
- spec/integration/an_interactor_with_validations_spec.rb
|
|
258
|
+
- spec/integration/an_interactor_with_around_perform_callbacks_spec.rb
|
|
257
259
|
- spec/integration/an_interactor_with_after_perform_callbacks_spec.rb
|
|
258
|
-
- spec/integration/
|
|
259
|
-
- spec/integration/
|
|
260
|
-
- spec/integration/
|
|
261
|
-
- spec/
|
|
262
|
-
- spec/integration/a_basic_organizer_spec.rb
|
|
263
|
-
- spec/active_interactor/organizer/interactor_interface_collection_spec.rb
|
|
264
|
-
- spec/active_interactor/organizer/base_spec.rb
|
|
265
|
-
- spec/active_interactor/organizer/interactor_interface_spec.rb
|
|
266
|
-
- spec/active_interactor/config_spec.rb
|
|
267
|
-
- spec/active_interactor/base_spec.rb
|
|
268
|
-
- spec/active_interactor/context/base_spec.rb
|
|
269
|
-
- spec/active_interactor/error_spec.rb
|
|
270
|
-
- spec/active_interactor/interactor/worker_spec.rb
|
|
271
|
-
- spec/active_interactor/interactor/perform/options_spec.rb
|
|
272
|
-
- spec/active_interactor/version_spec.rb
|
|
260
|
+
- spec/integration/an_interactor_with_deferred_after_callbacks.rb
|
|
261
|
+
- spec/integration/a_basic_interactor_spec.rb
|
|
262
|
+
- spec/integration/an_organizer_containing_organizer_with_after_callbacks_deferred_spec.rb
|
|
263
|
+
- spec/active_interactor_spec.rb
|
|
273
264
|
- spec/support/helpers/factories.rb
|
|
274
|
-
- spec/support/
|
|
265
|
+
- spec/support/shared_examples/a_class_with_interactor_methods_example.rb
|
|
266
|
+
- spec/support/shared_examples/a_class_with_interactor_callback_methods_example.rb
|
|
275
267
|
- spec/support/shared_examples/a_class_that_extends_active_interactor_models_example.rb
|
|
276
268
|
- spec/support/shared_examples/a_class_with_interactor_context_methods_example.rb
|
|
277
|
-
- spec/support/shared_examples/a_class_with_interactor_callback_methods_example.rb
|
|
278
|
-
- spec/support/shared_examples/a_class_with_interactor_methods_example.rb
|
|
279
269
|
- spec/support/shared_examples/a_class_with_organizer_callback_methods_example.rb
|
|
280
270
|
- spec/support/coverage.rb
|
|
281
|
-
- spec/
|
|
271
|
+
- spec/support/spec_helpers.rb
|
|
272
|
+
- spec/active_interactor/base_spec.rb
|
|
273
|
+
- spec/active_interactor/error_spec.rb
|
|
274
|
+
- spec/active_interactor/config_spec.rb
|
|
275
|
+
- spec/active_interactor/interactor/worker_spec.rb
|
|
276
|
+
- spec/active_interactor/interactor/perform/options_spec.rb
|
|
277
|
+
- spec/active_interactor/context/base_spec.rb
|
|
278
|
+
- spec/active_interactor/version_spec.rb
|
|
279
|
+
- spec/active_interactor/organizer/base_spec.rb
|
|
280
|
+
- spec/active_interactor/organizer/interactor_interface_spec.rb
|
|
281
|
+
- spec/active_interactor/organizer/interactor_interface_collection_spec.rb
|
|
282
282
|
- spec/spec_helper.rb
|