pampa 2.0.32 → 2.0.33

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: d8ecd4b5c1d9d0c17fea5c9381f03a592346c12a26025de5413bef6b24c85714
4
- data.tar.gz: 4f35811ea3350173747f194f6805eb7555a4d8d6c57f46b11c697f03d72cc57b
3
+ metadata.gz: 84832cca8c02aa3598425b850c3532ccb362ed1dc2830d7a5e3772c5bcbdf3a5
4
+ data.tar.gz: 3a79500e803be1c35a41c52eb633c2bbafb94b20011723a06786d4d728f35f94
5
5
  SHA512:
6
- metadata.gz: 23ae6f0e898396869bf16c3599b8d27ce7f4d09917ca8f3b75c22abc60b09c21366e82fe70ec708302be0f3aab47c505c3111a2b9c98cbd543e159473b0a7db2
7
- data.tar.gz: 17a75605d82eb9aa8629b35a9ea69a6b60903a2b866b119c453913f9a3ca7d3add5689eabd0c451be09859aa62271b2874ac6c75cdee8358962f778e97577231
6
+ metadata.gz: 0136fe602e1b83f8eded858860b66f9ffa9daaf2d507bdaca52b66d961e913a77b924ef90f17a2592cf5f8724954a58af1d3b9dd7b5ccf94dcb6b12db7f9bd6f
7
+ data.tar.gz: b20d208d0344632c423d54448183c5a8a85e5e4344f6db1d2639edd45efb32287d428942474e3e581d65a987c1f6ab45f65c8dbd96c251875ce162be5ae6ea8a
@@ -62,9 +62,9 @@ l.logf 'done'.green
62
62
 
63
63
  # call dispatcher code snippet
64
64
  l.logs 'Calling dispatcher code snippet... '
65
- f = BlackStack::Pampa.dispatcher_function(l)
65
+ f = BlackStack::Pampa.dispatcher_function
66
66
  if f
67
- f.call
67
+ f.call(l)
68
68
  l.logf 'done'.green
69
69
  else
70
70
  l.logf 'no dispatcher code snippet found'.yellow
data/lib/pampa/worker.rb CHANGED
@@ -68,9 +68,9 @@ l.logf 'done'.green
68
68
 
69
69
  # call dispatcher code snippet
70
70
  l.logs 'Calling worker code snippet... '
71
- f = BlackStack::Pampa.worker_function(l)
71
+ f = BlackStack::Pampa.worker_function
72
72
  if f
73
- f.call
73
+ f.call(l)
74
74
  l.logf 'done'.green
75
75
  else
76
76
  l.logf 'no worker code snippet found'.yellow
data/pampa.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'pampa'
3
- s.version = '2.0.32'
3
+ s.version = '2.0.33'
4
4
  s.date = '2023-10-07'
5
5
  s.summary = "Ruby library for async & distributed computing, supporting dynamic reconfiguration, distribution of the computation jobs, error handling, job-retry and fault tolerance, and fast (non-direct) communication to ensure real-time capabilities."
6
6
  s.description = "Pampa is a Ruby library for async & distributing computing providing the following features:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pampa
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.32
4
+ version: 2.0.33
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Daniel Sardi