activeinteractor 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc5562711e71b13317b0a916339266074063ef6858399c436aa99287557e94ca
4
- data.tar.gz: babc70027c7ca3fd1996368ac5ea24abdad6ef148f2151df47f9af810d5c06cd
3
+ metadata.gz: 4872bd78ecedca5b6277acdca57fd623b66823adb067fa002f00208e2128ce98
4
+ data.tar.gz: 3445c265ef4ba5a9338f67e5ef347cf63bf60412a6320de2250c697fe6b049f6
5
5
  SHA512:
6
- metadata.gz: def28dc17ba2159abceb6775f874f00117ca0437d6871d74f8bc518e2fe712df8895cc9d46ca6fd5c18b464fde46a7572bec385e995c58e04af5498f09a18d33
7
- data.tar.gz: 4785f15e5c9c5f43b81466a96aa14886e20712ed7a889530d4fd32456f4207c479304de6d3df6c1b33e3992873a2f974776e7f650fc032f71a82606304155ebf
6
+ metadata.gz: 7f8ff6addc793b5179d67d6f522a0c1527c3bcede0b851a8a6e5dd7c833c2fd2d27b7480c39525deb7fcaad294313563f2fdd72bf34c29ad86b5563d511c1940
7
+ data.tar.gz: ef2a2ef6abe7aaf86b84cdf9ca99bc19d97aca78b85bf6c83c50862d40520c2a80209ec91b178bd4c1a1673a122d08f538ca0313464077c82af89fb21080472a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning].
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [v0.1.1] - 2019-03-30
11
+
12
+ ### Fixed
13
+
14
+ - #15: NameError (uninitialized constant ActiveInteractor::Organizer)
15
+ - #16: NoMethodError (undefined method `merge' for #<ActiveInteractor::Context::Base>)
16
+
10
17
  ## v0.1.0 - 2019-03-30
11
18
 
12
19
  - Initial gem release
@@ -14,4 +21,5 @@ and this project adheres to [Semantic Versioning].
14
21
  [Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
15
22
  [Semantic Versioning]: https://semver.org/spec/v2.0.0.html
16
23
 
17
- [Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v0.1.0...HEAD
24
+ [Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v0.1.1...HEAD
25
+ [v0.1.1]: https://github.com/aaronmallen/activeinteractor/compare/v0.1.0...v0.1.1
@@ -38,9 +38,7 @@ module ActiveInteractor
38
38
  # in favor of this default implementation.
39
39
  def perform
40
40
  self.class.organized.each do |interactor|
41
- self.context = context.merge(
42
- interactor.new(context).tap(&:skip_clean_context!).execute_perform!
43
- )
41
+ self.context = interactor.new(context).tap(&:skip_clean_context!).execute_perform!
44
42
  end
45
43
  end
46
44
  end
@@ -3,5 +3,5 @@
3
3
  module ActiveInteractor
4
4
  # The ActiveInteractor gem version
5
5
  # @return [String] the gem version
6
- VERSION = '0.1.0'
6
+ VERSION = '0.1.1'
7
7
  end
@@ -34,6 +34,7 @@ module ActiveInteractor
34
34
  autoload :Configuration
35
35
  autoload :Context
36
36
  autoload :Interactor
37
+ autoload :Organizer
37
38
 
38
39
  class << self
39
40
  # The ActiveInteractor configuration
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeinteractor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Allen
@@ -244,9 +244,11 @@ licenses:
244
244
  - MIT
245
245
  metadata:
246
246
  bug_tracker_uri: https://github.com/aaronmallen/activeinteractor/issues
247
+ changelog_uri: https://github.com/aaronmallen/activeinteractor/blob/v0.1.1/CHANGELOG.md
248
+ documentation_uri: https://www.rubydoc.info/gems/activeinteractor/0.1.1
247
249
  hompage_uri: https://github.com/aaronmallen/activeinteractor
248
- source_code_uri: https://github.com/aaronmallen/activeinteractor/tree/v0.1.0
249
- changelog_uri: https://github.com/aaronmallen/activeinteractor/blob/v0.1.0/CHANGELOG.md
250
+ source_code_uri: https://github.com/aaronmallen/activeinteractor/tree/v0.1.1
251
+ wiki_uri: https://github.com/aaronmallen/activeinteractor/wiki
250
252
  post_install_message:
251
253
  rdoc_options: []
252
254
  require_paths: