Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
373 views

Image rendering on browser or temporary images?

I'm trying to make a statistics page where it will show several data and charts. The charts need to be pictures so that the user can save it/drag-and-drop to his/her personal reports. I'm using Gruff ...
1
vote
1answer
115 views

How can I generate images in real-time using Ruby on Rails and Gruff?

I draw bar graphs in my app using gruff. In one view, 'compare', I want to show one graph for every 'step' my 'project' has. I imagine it something like this: image_tag graph_step_path(step) I've ...
1
vote
1answer
358 views

Ruby 1.9 compatible plotting / graphic library?

I feel like I have a simple desire that no one can satisfy: I want to be able to graph a set of points, and I am using Ruby 1.9.2. I would like to use Gruff or Scruffy, since these seem to be the ...
0
votes
0answers
45 views

how to install gruff, rmagic gem on ubuntu system?

After installing gruff gem in ubuntu while running some code I get the below error /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require': no such file to load -- ...
0
votes
0answers
18 views

Set the min,max and y-axis increment value for gruff graph

I decided to place a min/max value and set the increment for the graph up as well. Here is the function that creates the graph: g = Gruff::Line g. maximum_value = 100 g.minimum_value = 0 ...
0
votes
0answers
23 views

ruby many-to-many table query

i am still in the midst of making gruff. ive ran out of idea o rmaybe im just not good at this. i have a manytomany relationshp tables Work int id int status_id Team int id string name (A,B,C,D) ...
0
votes
2answers
172 views

Gruff Non-conforming drawing primitive

I have a ruby script I've written using Gruff to produce graphs. These are simple bar charts, and they've worked fine many times. Now, for one particular set of points I'm getting ...
0
votes
1answer
617 views

Cannot load Rails application with gruff gem

I am trying to load a Ruby on Rails application that uses the Gruff gem. I can load Gruff fine in irb, but whenever I try to load the app (via ruby script/server), it crashes. Here's the full stack ...