0.0
No commit activity in last 3 years
No release in over 3 years
Allows you to write reports that use existing ruby classes/methods to present/filter the data
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
 Project Readme

Ruby Reportable - reporting in ruby

DESCRIPTION

Ruby Reportable is a DSL for writing reports using pure ruby. It allows you to use existing code (ie your Rails application) to grab data and the manipulate it.

If you have loaded it then Ruby Reportable can report on it.

Examples

See examples/ directory

Usage

Using Ruby Reportable is as easy as include RubyReportable in a new class. The include lets Ruby Reportable know this class is a new report and also brings in the DSL.

Source

Your source is the start of your data. All available configuration is shown below.

source do
  #
  # define how your outputs will see each element of the source data
  #
  as :element  # this is the default

  # Whatever you want your starting data to be
  logic do
    ObjectSpace.each_object.to_a.group_by(&:class).to_a
  end
end

INSTALLATION

Install as a gem or use as part of your Gemfile

$ [sudo] gem install ruby_reportable

Configuration

Version 0.2.X

There is a change in what is returned when a report is validated (object.report.valid?). In 0.1.X true/false is returned but in 0.2.X a hash is returned containing whether the report is valid (status) and an array of errors if any (errors).

{:status => true/false, :errors => array }