edouard-metric_fu 1.0.4.1 → 1.0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/base/graph.rb +1 -1
- metadata +1 -1
data/lib/base/graph.rb
CHANGED
@@ -20,7 +20,7 @@ module MetricFu
|
|
20
20
|
|
21
21
|
def generate
|
22
22
|
puts "Generating graphs"
|
23
|
-
Dir[File.join(MetricFu.data_directory, '*.yml')].each do |metric_file|
|
23
|
+
Dir[File.join(MetricFu.data_directory, '*.yml')].sort.each do |metric_file|
|
24
24
|
puts "Generating graphs for #{metric_file}"
|
25
25
|
date = metric_file.split('/')[3].split('.')[0]
|
26
26
|
metrics = YAML::load(File.open(metric_file))
|