0
0
Fork 0

Use new writing of "rmagick"

This commit is contained in:
Stormwind 2015-10-22 12:28:12 +02:00
parent b25e71486a
commit 0f96f9c139
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
source "https://rubygems.org"
gem "RMagick"
gem "rmagick"

View File

@ -1,5 +1,5 @@
require "rubella/output/base"
require 'RMagick'
require 'rmagick'
module Rubella
module Output
@ -33,7 +33,7 @@ module Rubella
y = @data.dataset_length*@field_size # buckets x field_size
# start drawing the damn thing
image = Magick::Image.new(x, y) { self.background_color = "white" }
image = Magick::Image.new(x, y) { self.background_color = "lime" }
i = 0
@data.each do |point|