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: 7e2700452d86edebc82fa3ee39440d45e145a60ce29100beb2e60e7a8fc8421e
4
- data.tar.gz: 12247104874465f4feb387201f52afb45ee941fce8cb18f9a303e08af117a3a7
3
+ metadata.gz: e1976d91976a495a0b930a03ad29e12240bddf6cba102c118c0ec12f871a023d
4
+ data.tar.gz: 1b6ec8440f14820138c8fd380de3b4a13cf3eda761493a082cf2c56ed3e8c133
5
5
  SHA512:
6
- metadata.gz: 3f2a24c468da16bcc97e1e2cbbb86adf99c9e1a37b352e7e5e99e574a15333f8ca1cbf22b675fbc4387e4dfd2c6e52dc3e07bd3365569957385d4889195f02cb
7
- data.tar.gz: e3d2122b3438fb9c5fbc637535a8450771879cde90291978bb111a0e94a4c4f9440269f2c6b253fb7d2360581166a793a12498f77544d627287eae0d56927dd5
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.symbolize_keys
13
+ @incoming_arguments = incoming_arguments
14
14
  @collection_of_inputs = collection_of_inputs
15
15
  end
16
16
 
@@ -4,7 +4,7 @@ module Servactory
4
4
  module VERSION
5
5
  MAJOR = 1
6
6
  MINOR = 9
7
- PATCH = 1
7
+ PATCH = 2
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH].join(".")
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: servactory
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.1
4
+ version: 1.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Sokolov