cpee 2.0.3 → 2.0.5

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: 6d1d7e6a27a9a6609e6ae2efd391e71595a36d6a5672bbfc6fbb615dcf2b66cd
4
- data.tar.gz: 2c4628fb7fac4f492ca00f3215fdfa361c461550243b8fbc5c24b32f1f396b3f
3
+ metadata.gz: bbd427d42a5f3a293559f8ac3687b80b76c6479e8c62f00bceff03606aaba3e1
4
+ data.tar.gz: '08a71c3d9c4b8091bc09f4d45fc3a95e2d717780186c5d2c021df4476388c9a8'
5
5
  SHA512:
6
- metadata.gz: 05f3c482d24f650988760431222f8f1ee4aa320b78edb60d31705d0e8bcc7baa84a8c41fcdd36006411a27f40cb77bbdf6f7664fc6305ed4ac7bafcc6e4aff56
7
- data.tar.gz: 756a3209ebf911c8407804ba5f0a88b86827578bd0d29435c8ee711c79cbbbbbe581791f6cb233cd520d72074dc7a160e6ba58fd8b35591efaef9cc72898e138
6
+ metadata.gz: 56c2e4b9a14c5b4f12fd57f22a70ce707db68f14618c11966950726eccc5769a8b4036ef6fb62d486a60afe4ea7310710069dec25ac0913ba73378e927c7edaf
7
+ data.tar.gz: 32a0cbc433baa7be0f84741d92b1c30b7ebb9ad10ed12e2f70c0398d5f1bfd0279495e80ac21e5237b3fb57580585d5895dacbd1b830c2797790b446af555749
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "cpee"
3
- s.version = "2.0.3"
3
+ s.version = "2.0.5"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3.0"
6
6
  s.summary = "Preliminary release of cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
@@ -215,7 +215,7 @@ module CPEE
215
215
  case state
216
216
  when 'running'
217
217
  CPEE::Persistence::write_instance id, opts
218
- pid = Kernel.spawn(exe , :pgroup => true, :in=>"/dev/null", :out => exe + '.out', :err => exe + '.err')
218
+ pid = Kernel.spawn(exe , :pgroup => true, :in => '/dev/null', :out => exe + '.out', :err => exe + '.err')
219
219
  Process.detach pid
220
220
  File.write(exe + '.pid',pid)
221
221
  when 'stopping'
data/tools/cpee CHANGED
@@ -52,8 +52,7 @@ ARGV.options { |opt|
52
52
  opt.parse!
53
53
  }
54
54
  if (ARGV.length == 0) ||
55
- (ARGV.length == 1 && ARGV[0] != 'ui') ||
56
- (ARGV.length == 1 && ARGV[0] != 'convert') ||
55
+ (ARGV.length == 1 && !(%w(ui convert).include?(ARGV[0]))) ||
57
56
  (ARGV.length == 2 && !(%w(abandon start delete! cpui new).include?(ARGV[0]))) ||
58
57
  (ARGV.length == 3 && ARGV[0] != 'archive') ||
59
58
  (ARGV.length > 3)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpee
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler