lilygraph 0.5.8 → 0.5.9
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/VERSION +1 -1
- data/lib/lilygraph.rb +2 -2
- data/lilygraph.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.9
|
data/lib/lilygraph.rb
CHANGED
@@ -301,9 +301,9 @@ class Lilygraph
|
|
301
301
|
|
302
302
|
def max
|
303
303
|
if @options[:flush]
|
304
|
-
temp_max = (data_max + [division / 10, 1].max)
|
305
|
-
else
|
306
304
|
temp_max = data_max
|
305
|
+
else
|
306
|
+
temp_max = (data_max + [division / 10, 1].max)
|
307
307
|
end
|
308
308
|
|
309
309
|
((temp_max / Float(division)).ceil * Float(division)).round
|
data/lilygraph.gemspec
CHANGED