Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
442 views

Rails, two dimensional table, pivot, nested hash loops

I am building grade-book report - a two dimensional table that shows lesson names going horizontally and a list of students going vertically. Student Name | LessonID x | LessonID x | LessonID x ...
5
votes
6answers
1k views

Ruport vs. Prawn considering long-term use

I want to add reporting capabilities to my Rails application and I'm struggling quite some time now on which reporting software to use to create my PDF documents. Until now I'm pretty sure that ...
3
votes
3answers
586 views

Resolving a class name conflict in a Rails application

I have been building a Rails application that performs accounting functionality. As part of this, I have a model with the class name Transaction. So far so good, I have been building this ...
2
votes
3answers
492 views

Text Formatting in Ruby (For Packing Slips)

I need to generate formatted text packing slips for a Ruby on Rails project I'm working on. I'm considering using Ruport or just formatting it myself in a string and outputting it to text. The only ...
1
vote
2answers
147 views

how to config ruport in the environment.rb

i have installed ruport gem along with its ruport-utils packages and act_as_reportable gem too.... e "Ash::Application.initialize! Rails::Initializer.run do |config| config.after_initialize do ...
1
vote
1answer
103 views

Underline in Ruby Report

Hey all, I'm trying a very simple thing here in Ruport but I don't seem able to get it working. All I want is underline a part of a text. I already have the substring that I want to underline, because ...
1
vote
3answers
935 views

Ruby on Rails Report Generator

Is there a way that I can produce a report in RoR without using Ruport or any other report generator rails plugin? Thanks in advance
1
vote
1answer
164 views

How to store ruport table data object in a database?

I intend to store a nightly build of report data in a DB and then use formatters when a user requests for a report in real-time. A few clues... The Ruport::Data::Table object - that contains the data ...
1
vote
1answer
301 views

Display math powers using Ruby PDF::Writer or Ruport?

Is there an easy way to display powers in PDF generated using the Ruby PDF::Writer library? I realize that I can just print the exponent a bit higher than the base number, however I thought maybe ...
0
votes
1answer
47 views

Rails Ruport using SQL

Guys I'm using Ruport gem for Ruby Reporting, I gone through basic coding and configuration as follows class Project < ActiveRecord::Base acts_as_reportable end and in IRB console i tried as ...
0
votes
2answers
63 views

How do I programatically override the formatter of a Ruport data table?

I have a pretty straight-forward Ruport setup in my Rails app, where the Ruport controller is passed a Report::Data::Table instance: class Reporter < Ruport::Controller stage :headline, :data, ...
0
votes
1answer
134 views

How to include the ruport/acts_as_reportable gems for JRuby using Warbler?

I am using JRuby 1.4.0 and want to use Ruport to make CSV files. This perfectly works until I make a war-file from it with warbler to put it on a server. When I add the following code to ...
0
votes
1answer
73 views

Conflicting column names in Ruport report table

When using Ruport to make a CSV file for entities containing the same entities, the generated column names create conflicts, causing Ruport to show only the first occurence of this column(s). To make ...
0
votes
1answer
121 views

Ruby Reporting through Ruport and other tools

I want to write a small reporting tool and looking to fetch data from MySQL. After searching I found a tool called as Ruport but I am not following where are it's binaries located. If not binaries ...
0
votes
1answer
220 views

Using Ruport for the show view in RoR

Hy y'all. I previously thank you for your answers. I'm making a simple report with Ruport in RoR. Rails v: 2.3.5. Ruby v: 1.8.7. This is, practicly, mi report's code: def setup self.data = ...
0
votes
3answers
840 views

How to Group by Day with Ruport / Ruby on Rails?

I'm trying to evaluate Ruport for use in my Rails app, but am not sure how to take a series of records with date/time stamps and group them via Ruport's grouping functions. I'm open to other/better ...