gruff 0.5.1-java → 0.6.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +12 -9
- data/Gemfile +2 -2
- data/gruff.gemspec +3 -6
- data/lib/gruff/base.rb +20 -3
- data/lib/gruff/bezier.rb +2 -2
- data/lib/gruff/line.rb +30 -5
- data/lib/gruff/net.rb +2 -13
- data/lib/gruff/pie.rb +14 -15
- data/lib/gruff/stacked_bar.rb +6 -2
- data/lib/gruff/version.rb +1 -1
- data/test/test_labels_for_null_data.rb +27 -0
- data/test/test_pie.rb +8 -1
- data/test/test_scatter.rb +1 -1
- data/test/test_stacked_bar.rb +16 -0
- metadata +23 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3dcf399d4935b793e35aa2e4a23fb653e149f2da
|
4
|
+
data.tar.gz: 9165805bf7719fb68924645d694cc189095b39b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebc6235ed48788da4152060d8a5cf54c75a7eab654628af66a0c63743fb3951a6038dd89e15802008a0fc574c284d2386f9bb3ad446eaa965f4794cff9c9f559
|
7
|
+
data.tar.gz: af643a3a4fad7a7ab8e6fd25c186eb002d3e3b62760db781be5168417768d7973a5e365f214d87ffbc4933d9d5e1caa9eb5885686e33c915eb9b73dd6d5d2ac9
|
data/.travis.yml
CHANGED
@@ -1,14 +1,17 @@
|
|
1
1
|
language: ruby
|
2
|
-
|
3
|
-
email:
|
4
|
-
- uwe@kubosch.no
|
2
|
+
sudo: false
|
5
3
|
rvm:
|
6
4
|
- "1.8.7"
|
7
5
|
- "1.9.3"
|
8
6
|
- "2.0.0"
|
9
|
-
-
|
10
|
-
-
|
11
|
-
- jruby-
|
12
|
-
-
|
13
|
-
-
|
14
|
-
-
|
7
|
+
- "2.1"
|
8
|
+
- "2.2"
|
9
|
+
- jruby-18mode
|
10
|
+
- jruby-19mode
|
11
|
+
- jruby-20mode
|
12
|
+
- jruby-head
|
13
|
+
- rbx
|
14
|
+
- rbx-2
|
15
|
+
notifications:
|
16
|
+
email:
|
17
|
+
- uwe@kubosch.no
|
data/Gemfile
CHANGED
data/gruff.gemspec
CHANGED
@@ -11,23 +11,20 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.date = Date.today.to_s
|
12
12
|
s.description = %q{Beautiful graphs for one or multiple datasets. Can be used on websites or in documents.}
|
13
13
|
s.email = %q{boss@topfunky.com}
|
14
|
-
# s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
|
15
14
|
s.files = `git ls-files`.split($/).reject{|f| f =~ /^test#{File::ALT_SEPARATOR || File::SEPARATOR}output/}
|
16
|
-
# s.has_rdoc = true
|
17
15
|
s.homepage = %q{https://github.com/topfunky/gruff}
|
18
|
-
# s.rdoc_options = ["--main", "README.txt"]
|
19
16
|
s.require_paths = %w(lib)
|
20
|
-
# s.rubyforge_project = %q{gruff}
|
21
17
|
s.summary = %q{Beautiful graphs for one or multiple datasets.}
|
22
18
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
23
19
|
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
24
20
|
s.specification_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
25
21
|
if defined? JRUBY_VERSION
|
26
22
|
s.platform = 'java'
|
27
|
-
s.add_dependency 'rmagick4j'
|
23
|
+
s.add_dependency 'rmagick4j', '>= 0.3.9'
|
28
24
|
else
|
29
|
-
s.add_dependency 'rmagick'
|
25
|
+
s.add_dependency 'rmagick', '>= 2.13.4'
|
30
26
|
end
|
31
27
|
s.add_development_dependency('rake')
|
28
|
+
s.add_development_dependency('test-unit')
|
32
29
|
s.license = 'MIT'
|
33
30
|
end
|
data/lib/gruff/base.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'rubygems'
|
2
|
-
require '
|
2
|
+
require 'rmagick'
|
3
3
|
require 'bigdecimal'
|
4
4
|
|
5
5
|
require File.dirname(__FILE__) + '/deprecated'
|
@@ -117,6 +117,12 @@ module Gruff
|
|
117
117
|
# a reader here.
|
118
118
|
attr_reader :font
|
119
119
|
|
120
|
+
# Same as font but for the title.
|
121
|
+
attr_reader :title_font
|
122
|
+
|
123
|
+
# Specifies whether to draw the title bolded or not.
|
124
|
+
attr_accessor :bold_title
|
125
|
+
|
120
126
|
attr_accessor :font_color
|
121
127
|
|
122
128
|
# Prevent drawing of line markers
|
@@ -249,6 +255,7 @@ module Gruff
|
|
249
255
|
|
250
256
|
vera_font_path = File.expand_path('Vera.ttf', ENV['MAGICK_FONT_PATH'])
|
251
257
|
@font = File.exists?(vera_font_path) ? vera_font_path : nil
|
258
|
+
@bold_title = true
|
252
259
|
|
253
260
|
@marker_font_size = 21.0
|
254
261
|
@legend_font_size = 20.0
|
@@ -290,6 +297,11 @@ module Gruff
|
|
290
297
|
@d.font = @font
|
291
298
|
end
|
292
299
|
|
300
|
+
# Sets the title font to the font at +font_path+
|
301
|
+
def title_font=(font_path)
|
302
|
+
@title_font = font_path
|
303
|
+
end
|
304
|
+
|
293
305
|
# Add a color to the list of available colors for lines.
|
294
306
|
#
|
295
307
|
# Example:
|
@@ -799,10 +811,10 @@ module Gruff
|
|
799
811
|
return if (@hide_title || @title.nil?)
|
800
812
|
|
801
813
|
@d.fill = @font_color
|
802
|
-
@d.font = @font if @font
|
814
|
+
@d.font = @title_font || @font if @title_font || @font
|
803
815
|
@d.stroke('transparent')
|
804
816
|
@d.pointsize = scale_fontsize(@title_font_size)
|
805
|
-
@d.font_weight = BoldWeight
|
817
|
+
@d.font_weight = if @bold_title then BoldWeight else NormalWeight end
|
806
818
|
@d.gravity = NorthGravity
|
807
819
|
@d = @d.annotate_scaled(@base_image,
|
808
820
|
@raw_columns, 1.0,
|
@@ -1123,6 +1135,11 @@ module Gruff
|
|
1123
1135
|
@d.get_type_metrics(@base_image, text.to_s).width
|
1124
1136
|
end
|
1125
1137
|
|
1138
|
+
# Used for degree => radian conversions
|
1139
|
+
def deg2rad(angle)
|
1140
|
+
angle * (Math::PI/180.0)
|
1141
|
+
end
|
1142
|
+
|
1126
1143
|
end # Gruff::Base
|
1127
1144
|
|
1128
1145
|
class IncorrectNumberOfDatasetsException < StandardError;
|
data/lib/gruff/bezier.rb
CHANGED
@@ -18,8 +18,8 @@ class Gruff::Bezier < Gruff::Base
|
|
18
18
|
new_y = @graph_top + (@graph_height - data_point * @graph_height)
|
19
19
|
|
20
20
|
if index == 0 && RUBY_PLATFORM != 'java'
|
21
|
-
poly_points <<
|
22
|
-
poly_points <<
|
21
|
+
poly_points << new_x
|
22
|
+
poly_points << new_y
|
23
23
|
end
|
24
24
|
|
25
25
|
poly_points << new_x
|
data/lib/gruff/line.rb
CHANGED
@@ -18,6 +18,9 @@ class Gruff::Line < Gruff::Base
|
|
18
18
|
attr_accessor :reference_line_default_color
|
19
19
|
attr_accessor :reference_line_default_width
|
20
20
|
|
21
|
+
# Allow for vertical marker lines
|
22
|
+
attr_accessor :show_vertical_markers
|
23
|
+
|
21
24
|
# Dimensions of lines and dots; calculated based on dataset size if left unspecified
|
22
25
|
attr_accessor :line_width
|
23
26
|
attr_accessor :dot_radius
|
@@ -167,7 +170,7 @@ class Gruff::Line < Gruff::Base
|
|
167
170
|
|
168
171
|
def draw_vertical_reference_line(reference_line)
|
169
172
|
index = @graph_left + (@x_increment * reference_line[:index])
|
170
|
-
draw_reference_line(reference_line, index, index, @graph_top, @graph_top + graph_height)
|
173
|
+
draw_reference_line(reference_line, index, index, @graph_top, @graph_top + @graph_height)
|
171
174
|
end
|
172
175
|
|
173
176
|
def draw
|
@@ -183,16 +186,34 @@ class Gruff::Line < Gruff::Base
|
|
183
186
|
draw_vertical_reference_line(curr_reference_line) if curr_reference_line.key?(:index)
|
184
187
|
end
|
185
188
|
|
189
|
+
if (@show_vertical_markers)
|
190
|
+
(0..@column_count).each do |column|
|
191
|
+
x = @graph_left + @graph_width - column.to_f * @x_increment
|
192
|
+
|
193
|
+
@d = @d.fill(@marker_color)
|
194
|
+
|
195
|
+
# FIXME(uwe): Workaround for Issue #66
|
196
|
+
# https://github.com/topfunky/gruff/issues/66
|
197
|
+
# https://github.com/rmagick/rmagick/issues/82
|
198
|
+
# Remove if the issue gets fixed.
|
199
|
+
x += 0.001 unless defined?(JRUBY_VERSION)
|
200
|
+
# EMXIF
|
201
|
+
|
202
|
+
@d = @d.line(x, @graph_bottom, x, @graph_top)
|
203
|
+
#If the user specified a marker shadow color, draw a shadow just below it
|
204
|
+
unless @marker_shadow_color.nil?
|
205
|
+
@d = @d.fill(@marker_shadow_color)
|
206
|
+
@d = @d.line(x + 1, @graph_bottom, x + 1, @graph_top)
|
207
|
+
end
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
186
211
|
@norm_data.each do |data_row|
|
187
212
|
prev_x = prev_y = nil
|
188
213
|
|
189
214
|
@one_point = contains_one_point_only?(data_row)
|
190
215
|
|
191
216
|
data_row[DATA_VALUES_INDEX].each_with_index do |data_point, index|
|
192
|
-
unless data_point
|
193
|
-
prev_x = prev_y = nil
|
194
|
-
next
|
195
|
-
end
|
196
217
|
x_data = data_row[DATA_VALUES_X_INDEX]
|
197
218
|
if x_data == nil
|
198
219
|
#use the old method: equally spaced points along the x-axis
|
@@ -204,6 +225,10 @@ class Gruff::Line < Gruff::Base
|
|
204
225
|
draw_label(@graph_left + ((label_pos - @minimum_x_value) * @graph_width) / (@maximum_x_value - @minimum_x_value), label_pos)
|
205
226
|
end
|
206
227
|
end
|
228
|
+
unless data_point # we can't draw a line for a null data point, we can still label the axis though
|
229
|
+
prev_x = prev_y = nil
|
230
|
+
next
|
231
|
+
end
|
207
232
|
|
208
233
|
new_y = @graph_top + (@graph_height - data_point * @graph_height)
|
209
234
|
|
data/lib/gruff/net.rb
CHANGED
@@ -111,8 +111,8 @@ class Gruff::Net < Gruff::Base
|
|
111
111
|
r_offset = 1.1
|
112
112
|
x_offset = center_x # + 15 # The label points need to be tweaked slightly
|
113
113
|
y_offset = center_y # + 0 # This one doesn't though
|
114
|
-
x = x_offset + (radius * r_offset * Math.sin(angle
|
115
|
-
y = y_offset - (radius * r_offset * Math.cos(angle
|
114
|
+
x = x_offset + (radius * r_offset * Math.sin(deg2rad(angle)))
|
115
|
+
y = y_offset - (radius * r_offset * Math.cos(deg2rad(angle)))
|
116
116
|
|
117
117
|
# Draw label
|
118
118
|
@d.fill = @marker_color
|
@@ -125,14 +125,3 @@ class Gruff::Net < Gruff::Base
|
|
125
125
|
end
|
126
126
|
|
127
127
|
end
|
128
|
-
|
129
|
-
# # This method is already in Float
|
130
|
-
# class Float
|
131
|
-
# # Used for degree => radian conversions
|
132
|
-
# def deg2rad
|
133
|
-
# self * (Math::PI/180.0)
|
134
|
-
# end
|
135
|
-
# end
|
136
|
-
|
137
|
-
|
138
|
-
|
data/lib/gruff/pie.rb
CHANGED
@@ -13,7 +13,7 @@ require File.dirname(__FILE__) + '/base'
|
|
13
13
|
|
14
14
|
class Gruff::Pie < Gruff::Base
|
15
15
|
|
16
|
-
|
16
|
+
DEFAULT_TEXT_OFFSET_PERCENTAGE = 0.15
|
17
17
|
|
18
18
|
# Can be used to make the pie start cutting slices at the top (-90.0)
|
19
19
|
# or at another angle. Default is 0.0, which starts at 3 o'clock.
|
@@ -21,11 +21,18 @@ class Gruff::Pie < Gruff::Base
|
|
21
21
|
# Do not show labels for slices that are less than this percent. Use 0 to always show all labels.
|
22
22
|
# Defaults to 0
|
23
23
|
attr_accessor :hide_labels_less_than
|
24
|
+
# Affect the distance between the percentages and the pie chart
|
25
|
+
# Defaults to 0.15
|
26
|
+
attr_accessor :text_offset_percentage
|
27
|
+
## Use values instead of percentages
|
28
|
+
attr_accessor :show_values_as_labels
|
24
29
|
|
25
30
|
def initialize_ivars
|
26
31
|
super
|
27
32
|
@zero_degree = 0.0
|
28
33
|
@hide_labels_less_than = 0.0
|
34
|
+
@text_offset_percentage = DEFAULT_TEXT_OFFSET_PERCENTAGE
|
35
|
+
@show_values_as_labels = false
|
29
36
|
end
|
30
37
|
|
31
38
|
def draw
|
@@ -64,9 +71,9 @@ class Gruff::Pie < Gruff::Base
|
|
64
71
|
label_val = ((data_row[DATA_VALUES_INDEX].first / total_sum) * 100.0).round
|
65
72
|
unless label_val < @hide_labels_less_than
|
66
73
|
# RMagick must use sprintf with the string and % has special significance.
|
67
|
-
label_string = label_val.to_s + '%'
|
74
|
+
label_string = @show_values_as_labels ? data_row[DATA_VALUES_INDEX].first.to_s : label_val.to_s + '%'
|
68
75
|
@d = draw_label(center_x,center_y, half_angle,
|
69
|
-
radius + (radius *
|
76
|
+
radius + (radius * @text_offset_percentage),
|
70
77
|
label_string)
|
71
78
|
end
|
72
79
|
|
@@ -87,12 +94,12 @@ private
|
|
87
94
|
def draw_label(center_x, center_y, angle, radius, amount)
|
88
95
|
# TODO Don't use so many hard-coded numbers
|
89
96
|
r_offset = 20.0 # The distance out from the center of the pie to get point
|
90
|
-
x_offset = center_x
|
97
|
+
x_offset = center_x # + 15.0 # The label points need to be tweaked slightly
|
91
98
|
y_offset = center_y # This one doesn't though
|
92
99
|
radius_offset = (radius + r_offset)
|
93
|
-
ellipse_factor = radius_offset *
|
94
|
-
x = x_offset + ((radius_offset + ellipse_factor) * Math.cos(angle
|
95
|
-
y = y_offset + (radius_offset * Math.sin(angle
|
100
|
+
ellipse_factor = radius_offset * @text_offset_percentage
|
101
|
+
x = x_offset + ((radius_offset + ellipse_factor) * Math.cos(deg2rad(angle)))
|
102
|
+
y = y_offset + (radius_offset * Math.sin(deg2rad(angle)))
|
96
103
|
|
97
104
|
# Draw label
|
98
105
|
@d.fill = @font_color
|
@@ -114,11 +121,3 @@ private
|
|
114
121
|
end
|
115
122
|
|
116
123
|
end
|
117
|
-
|
118
|
-
class Float
|
119
|
-
# Used for degree => radian conversions
|
120
|
-
def deg2rad
|
121
|
-
self * (Math::PI/180.0)
|
122
|
-
end
|
123
|
-
end
|
124
|
-
|
data/lib/gruff/stacked_bar.rb
CHANGED
@@ -7,6 +7,9 @@ class Gruff::StackedBar < Gruff::Base
|
|
7
7
|
|
8
8
|
# Spacing factor applied between bars
|
9
9
|
attr_accessor :bar_spacing
|
10
|
+
|
11
|
+
# Number of pixels between bar segments
|
12
|
+
attr_accessor :segment_spacing
|
10
13
|
|
11
14
|
# Draws a bar graph, but multiple sets are stacked on top of each other.
|
12
15
|
def draw
|
@@ -18,6 +21,7 @@ class Gruff::StackedBar < Gruff::Base
|
|
18
21
|
#
|
19
22
|
# Columns sit stacked.
|
20
23
|
@bar_spacing ||= 0.9
|
24
|
+
@segment_spacing ||= 1
|
21
25
|
@bar_width = @graph_width / @column_count.to_f
|
22
26
|
padding = (@bar_width * (1 - @bar_spacing)) / 2
|
23
27
|
|
@@ -38,9 +42,9 @@ class Gruff::StackedBar < Gruff::Base
|
|
38
42
|
left_x = @graph_left + (@bar_width * point_index) + padding
|
39
43
|
left_y = @graph_top + (@graph_height -
|
40
44
|
data_point * @graph_height -
|
41
|
-
height[point_index]) +
|
45
|
+
height[point_index]) + @segment_spacing
|
42
46
|
right_x = left_x + @bar_width * @bar_spacing
|
43
|
-
right_y = @graph_top + @graph_height - height[point_index] -
|
47
|
+
right_y = @graph_top + @graph_height - height[point_index] - @segment_spacing
|
44
48
|
|
45
49
|
# update the total height of the current stacked bar
|
46
50
|
height[point_index] += (data_point * @graph_height )
|
data/lib/gruff/version.rb
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
require File.dirname(__FILE__) + "/gruff_test_case"
|
2
|
+
|
3
|
+
class TestLabelsForNullData < GruffTestCase
|
4
|
+
|
5
|
+
def setup
|
6
|
+
@dataset = [nil, 1, 2, 1, nil]
|
7
|
+
|
8
|
+
@labels = {
|
9
|
+
0 => '1',
|
10
|
+
1 => '2',
|
11
|
+
2 => '3',
|
12
|
+
3 => '4',
|
13
|
+
4 => '5'
|
14
|
+
}
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_labels
|
18
|
+
g = Gruff::Line.new
|
19
|
+
g.title = 'Labels For Null Data'
|
20
|
+
g.labels = @labels
|
21
|
+
g.data('data', @dataset)
|
22
|
+
g.minimum_value = 0
|
23
|
+
|
24
|
+
g.write("test/output/TestLabelsForNullData.png")
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
data/test/test_pie.rb
CHANGED
@@ -139,7 +139,14 @@ class TestGruffPie < GruffTestCase
|
|
139
139
|
|
140
140
|
write_test_file g, "pie_simple.png"
|
141
141
|
end
|
142
|
-
|
142
|
+
|
143
|
+
def test_pie_with_adjusted_text_offset_percentage
|
144
|
+
g = setup_basic_graph
|
145
|
+
g.title = "Adjusted Text Offset Percentage"
|
146
|
+
g.text_offset_percentage = 0.03
|
147
|
+
g.write "test/output/pie_adjusted_text_offset_percentage.png"
|
148
|
+
end
|
149
|
+
|
143
150
|
protected
|
144
151
|
|
145
152
|
def setup_basic_graph(size=800)
|
data/test/test_scatter.rb
CHANGED
@@ -25,7 +25,7 @@ class TestGruffScatter < Test::Unit::TestCase
|
|
25
25
|
g.title = 'Many Datapoint Graph Test'
|
26
26
|
y_values = (0..50).map { rand(100) }
|
27
27
|
x_values = (0..50).map { rand(100) }
|
28
|
-
g.data('many points',
|
28
|
+
g.data('many points', x_values, y_values)
|
29
29
|
|
30
30
|
# Default theme
|
31
31
|
g.write('test/output/scatter_many.png')
|
data/test/test_stacked_bar.rb
CHANGED
@@ -48,5 +48,21 @@ class TestGruffStackedBar < GruffTestCase
|
|
48
48
|
end
|
49
49
|
g.write "test/output/stacked_bar_keynote_small.png"
|
50
50
|
end
|
51
|
+
|
52
|
+
def test_bar_graph_segment_spacing
|
53
|
+
g = Gruff::StackedBar.new
|
54
|
+
g.title = "Visual Stacked Bar Graph Test"
|
55
|
+
g.segment_spacing = 0
|
56
|
+
g.labels = {
|
57
|
+
0 => '5/6',
|
58
|
+
1 => '5/15',
|
59
|
+
2 => '5/24',
|
60
|
+
3 => '5/30',
|
61
|
+
}
|
62
|
+
@datasets.each do |data|
|
63
|
+
g.data(data[0], data[1])
|
64
|
+
end
|
65
|
+
g.write "test/output/stacked_bar_keynote_no_space.png"
|
66
|
+
end
|
51
67
|
|
52
68
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gruff
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Geoffrey Grosenbach
|
@@ -9,36 +9,50 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-05-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.3.9
|
15
20
|
name: rmagick4j
|
21
|
+
prerelease: false
|
22
|
+
type: :runtime
|
16
23
|
version_requirements: !ruby/object:Gem::Requirement
|
17
24
|
requirements:
|
18
25
|
- - '>='
|
19
26
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
27
|
+
version: 0.3.9
|
28
|
+
- !ruby/object:Gem::Dependency
|
21
29
|
requirement: !ruby/object:Gem::Requirement
|
22
30
|
requirements:
|
23
31
|
- - '>='
|
24
32
|
- !ruby/object:Gem::Version
|
25
33
|
version: '0'
|
26
|
-
prerelease: false
|
27
|
-
type: :runtime
|
28
|
-
- !ruby/object:Gem::Dependency
|
29
34
|
name: rake
|
35
|
+
prerelease: false
|
36
|
+
type: :development
|
30
37
|
version_requirements: !ruby/object:Gem::Requirement
|
31
38
|
requirements:
|
32
39
|
- - '>='
|
33
40
|
- !ruby/object:Gem::Version
|
34
41
|
version: '0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
35
43
|
requirement: !ruby/object:Gem::Requirement
|
36
44
|
requirements:
|
37
45
|
- - '>='
|
38
46
|
- !ruby/object:Gem::Version
|
39
47
|
version: '0'
|
48
|
+
name: test-unit
|
40
49
|
prerelease: false
|
41
50
|
type: :development
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
42
56
|
description: Beautiful graphs for one or multiple datasets. Can be used on websites or in documents.
|
43
57
|
email: boss@topfunky.com
|
44
58
|
executables: []
|
@@ -123,6 +137,7 @@ files:
|
|
123
137
|
- test/test_bezier.rb
|
124
138
|
- test/test_bullet.rb
|
125
139
|
- test/test_dot.rb
|
140
|
+
- test/test_labels_for_null_data.rb
|
126
141
|
- test/test_legend.rb
|
127
142
|
- test/test_line.rb
|
128
143
|
- test/test_mini_bar.rb
|
@@ -158,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
158
173
|
version: '0'
|
159
174
|
requirements: []
|
160
175
|
rubyforge_project:
|
161
|
-
rubygems_version: 2.
|
176
|
+
rubygems_version: 2.4.6
|
162
177
|
signing_key:
|
163
178
|
specification_version: 4
|
164
179
|
summary: Beautiful graphs for one or multiple datasets.
|
@@ -172,6 +187,7 @@ test_files:
|
|
172
187
|
- test/test_bezier.rb
|
173
188
|
- test/test_bullet.rb
|
174
189
|
- test/test_dot.rb
|
190
|
+
- test/test_labels_for_null_data.rb
|
175
191
|
- test/test_legend.rb
|
176
192
|
- test/test_line.rb
|
177
193
|
- test/test_mini_bar.rb
|