Sha256: b377bd478cbaf373b1562b15d6d81330f8fd5b2e45154f65d9fb425a48900ec9

Contents?: true

Size: 1.85 KB

Versions: 3

Compression:

Stored size: 1.85 KB

Contents

# TKH Illustrations

This is a Rails engine with customizes file uploading via the carrierwave gem.

Primarily developed for Ten Thousand Hours but we are happy to share if anybody finds it useful. It's meant primarily to be used with the tkh_cms gem suite but over time we want it to be used individually as well. The latter implementation will be accelerated if some issues and pull requests come in, denoting some interest out there.

It's still in its infancy. Many improvements to come.


## Pre-requisites


The following things are needed:

* an application controller switch_to_admin_layout method - optional use of the tkh_admin_panel gem
* the imagemagick library must be installed on your dev machine and production server
* current_user, authenticate, and authenticate_with_admin methods should be provided by your authentication system. You can use the tkh_authentication gem to that effect

That's all


## Installation

Add this line to your application's Gemfile:

    gem 'tkh_illustrations', '~> 0.0'

And then execute:

    $ bundle

Import migration

		$ rake tkh_illustrations:install

Run the migration

		$ rake db:migrate

And then of course restart your server!

		$ rails s


## Upgrading

If you are upgrading and think you might need to upgrade your migrations or your locale files, run again:

    $ rake tkh_illustrations:install

and

		$ rake db:migrate



## Usage

The section is located at:

    $ /illustrations

... and it should work out of the box


## Contributing

Pull requests for new features and bug fixes are welcome.

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Create your failing tests based on the Test Unit framework.
4. Create your code which makes the tests pass.
5. Commit your changes (`git commit -am 'Added some feature'`)
6. Push to the branch (`git push origin my-new-feature`)
7. Create new Pull Request

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tkh_illustrations-0.0.10 README.md
tkh_illustrations-0.0.9 README.md
tkh_illustrations-0.0.8 README.md