servactory 1.9.1 → 1.9.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1976d91976a495a0b930a03ad29e12240bddf6cba102c118c0ec12f871a023d
|
4
|
+
data.tar.gz: 1b6ec8440f14820138c8fd380de3b4a13cf3eda761493a082cf2c56ed3e8c133
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06d9b0f22847032a47c7ea4c12a495bf4e4b451e5041ef91ca3be13e05597a98fa4857ffbd3c2d00cdbe7b14c4c47733cbccf4573e3be154e3051fdb1cc08259
|
7
|
+
data.tar.gz: 3a9244a611b5c01f3fd4aff99a1784b399cff79a0a9c3207afc59114cca26c4a780dd80b7b1849f9f27a313780187208e8784bd51cff74f9d131f613c52193aa
|
@@ -8,7 +8,7 @@ module Servactory
|
|
8
8
|
|
9
9
|
context.send(
|
10
10
|
:_call!,
|
11
|
-
incoming_arguments: arguments,
|
11
|
+
incoming_arguments: arguments.symbolize_keys,
|
12
12
|
collection_of_inputs: collection_of_inputs,
|
13
13
|
collection_of_internals: collection_of_internals,
|
14
14
|
collection_of_outputs: collection_of_outputs,
|
@@ -10,7 +10,7 @@ module Servactory
|
|
10
10
|
|
11
11
|
def initialize(context, incoming_arguments, collection_of_inputs)
|
12
12
|
@context = context
|
13
|
-
@incoming_arguments = incoming_arguments
|
13
|
+
@incoming_arguments = incoming_arguments
|
14
14
|
@collection_of_inputs = collection_of_inputs
|
15
15
|
end
|
16
16
|
|
data/lib/servactory/version.rb
CHANGED