Sha256: cb30e2eea46b110c2a67d30345485f7ddc60f67e4345db8332aace537766cb20
Contents?: true
Size: 1.99 KB
Versions: 8
Compression:
Stored size: 1.99 KB
Contents
[Query report](http://ashrafuzzaman.github.io/query_report/) By [Ashrafuzzaman](http://ashrafuzzaman.github.io). [![Build Status](https://api.travis-ci.org/ashrafuzzaman/query_report.png?branch=master)](http://travis-ci.org/ashrafuzzaman/query_report) [![Gem Version](https://badge.fury.io/rb/query_report.png)](http://badge.fury.io/rb/query_report) Query report is a reporting tool, which does the following: * Generate paginated HTML view with filters, defined columns with sorting * Generate PDF, CSV, JSON * Provide feature to define re usable custom filter As built in filter I have used [ransack](https://github.com/ernie/ransack) and pagination with [kaminari](https://github.com/amatsuda/kaminari) For a demo see [here](http://query-report-demo.herokuapp.com) ## The purpose The purpose of this gem is to produce consistent reports quickly and manage them easily. Because all we need to concentrate in a report is the query and filter. ## Getting started Query report is tested with Rails 3. You can add it to your Gemfile with: ```ruby gem "query_report" ``` Run the bundle command to install it. Here is a sample controller which uses query report. And that is all you need, query report will generate all the view for you. ```ruby require 'query_report/helper' #need to require the helper class InvoicesController < ApplicationController include QueryReport::Helper #need to include it def index @invoices = Invoice.scoped reporter(@invoices) do filter :title, type: :text filter :created_at, type: :date, default: [5.months.ago.to_date.to_s(:db), 1.months.from_now.to_date.to_s(:db)] filter :paid, type: :boolean, default: false column :title do |invoice| link_to invoice.title, invoice end column :total_paid column :total_charged column :paid end end end ``` ## License MIT License. Copyright © 2013 [Ashrafuzzaman](http://ashrafuzzaman.github.io). See MIT-LICENSE for further details.
Version data entries
8 entries across 8 versions & 1 rubygems