Classes: Data, Graph
12 13 14 15
# File 'lib/graph_drawer.rb', line 12 def data(item, value) @data = Data.new(item, value) @graph.add(@data) end
5 6 7 8 9 10
# File 'lib/graph_drawer.rb', line 5 def graph @graph = Graph.new yield @graph.datas_init @graph.to_s end