cpee 1.3.128 → 1.3.129
Sign up to get free protection for your applications and to get access to all the features.
- data/cockpit/index.html +1 -1
- data/cockpit/js/instance.js +1 -1
- data/cpee.gemspec +2 -1
- metadata +17 -1
data/cockpit/index.html
CHANGED
data/cockpit/js/instance.js
CHANGED
@@ -42,7 +42,7 @@ var sub_less = 'topic' + '=' + 'running' + '&' +// {{{
|
|
42
42
|
'events' + '=' + 'change';// }}}
|
43
43
|
|
44
44
|
$(document).ready(function() {// {{{
|
45
|
-
$("input[name=base-url]").val(location.protocol + "//" + location.host + ":
|
45
|
+
$("input[name=base-url]").val(location.protocol + "//" + location.host + ":" + $('body').data('defaultport'));
|
46
46
|
$("button[name=base]").click(function(){ create_instance(null); });
|
47
47
|
$("button[name=instance]").click(function(){ ui_tab_click("#tabinstance"); monitor_instance(false); });
|
48
48
|
$("button[name=loadtestset]").click(load_testset);
|
data/cpee.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cpee"
|
3
|
-
s.version = "1.3.
|
3
|
+
s.version = "1.3.129"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "LGPL-3"
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee). If you just need workflow execution, without a rest/xmpp service exposing it, then use WEEL"
|
@@ -21,4 +21,5 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.add_runtime_dependency 'riddl'
|
22
22
|
s.add_runtime_dependency 'weel'
|
23
23
|
s.add_runtime_dependency 'savon'
|
24
|
+
s.add_runtime_dependency 'highline'
|
24
25
|
end
|
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: 1.3.
|
4
|
+
version: 1.3.129
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -61,6 +61,22 @@ dependencies:
|
|
61
61
|
- - ! '>='
|
62
62
|
- !ruby/object:Gem::Version
|
63
63
|
version: '0'
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: highline
|
66
|
+
requirement: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ! '>='
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
type: :runtime
|
73
|
+
prerelease: false
|
74
|
+
version_requirements: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
64
80
|
description: see http://cpee.org
|
65
81
|
email: juergen.mangler@gmail.com
|
66
82
|
executables: []
|