dynflow 0.7.3 → 0.7.4
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.
- data/.gitignore +0 -2
- data/lib/dynflow/execution_plan.rb +2 -2
- data/lib/dynflow/execution_plan/steps/abstract.rb +4 -4
- data/lib/dynflow/version.rb +1 -1
- metadata +2 -2
data/.gitignore
CHANGED
|
@@ -279,8 +279,8 @@ module Dynflow
|
|
|
279
279
|
steps,
|
|
280
280
|
string_to_time(hash[:started_at]),
|
|
281
281
|
string_to_time(hash[:ended_at]),
|
|
282
|
-
hash[:execution_time],
|
|
283
|
-
hash[:real_time])
|
|
282
|
+
hash[:execution_time].to_f,
|
|
283
|
+
hash[:real_time].to_f)
|
|
284
284
|
end
|
|
285
285
|
|
|
286
286
|
def compute_execution_time
|
|
@@ -138,10 +138,10 @@ module Dynflow
|
|
|
138
138
|
world,
|
|
139
139
|
string_to_time(hash[:started_at]),
|
|
140
140
|
string_to_time(hash[:ended_at]),
|
|
141
|
-
hash[:execution_time],
|
|
142
|
-
hash[:real_time],
|
|
143
|
-
hash[:progress_done],
|
|
144
|
-
hash[:progress_weight]
|
|
141
|
+
hash[:execution_time].to_f,
|
|
142
|
+
hash[:real_time].to_f,
|
|
143
|
+
hash[:progress_done].to_f,
|
|
144
|
+
hash[:progress_weight].to_f
|
|
145
145
|
end
|
|
146
146
|
|
|
147
147
|
private
|
data/lib/dynflow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-08-
|
|
12
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|