Sha256: 9207a6e441b08cb2da08da8560f9f6fd2681a8849401b1ffeef265895a3e1801

Contents?: true

Size: 850 Bytes

Versions: 1

Compression:

Stored size: 850 Bytes

Contents

# CustomReport

Create and view custom reports

## Installation

Add this line to your application's Gemfile:

    gem 'custom_report'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install custom_report

## Usage

In config/initializers/custom_report.rb

    CustomReport.layout = "admin_bootstrap"
    CustomReport.includes = AuthenticatedAdminSystem
    CustomReport.admin_class = "Administrator"
    CustomReport.before_filters = [:authenticate_or_request_admin]

In your routes

    mount CustomReport::Engine => "/custom_report"

This creates the path

    /custom_report/reports

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
custom_report-0.0.1 README.md