Sha256: b8638086c5277a136740ac4c2108e3301b0d81eef73a63df60f629447246fe2b

Contents?: true

Size: 666 Bytes

Versions: 3

Compression:

Stored size: 666 Bytes

Contents

# Bookkeeper

Bookkeeper is a Rails engine with the aim of allowing a Rails application (at least 3.1) to handle the purchases you made and their receipt.

## Configure

Add to your Gemfile

    gem 'bookkeeper'

then launch `bundle install`.

Mount the engine wherever you prefer. To do so, add to `config/routes.rb`:

    mount Bookkeeper::Engine => "/bookkeeper"

or, if you prefer:

    mount Bookkeeper::Engine => "/"
    root to: 'bookkeeper::purchases#index'

Bookkeeper uses Twitter Bootstrap markup, if your app doesn't use Bootstrap or you want to overwrite Bookkeeper views, just create the view into `app/views/bookkeeper/`. Use gem's views as template.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bookkeeper-0.0.1 README.md
bookkeeper-0.0.1.beta2 README.md
bookkeeper-0.0.1.beta1 README.md