32 lines
811 B
Markdown
32 lines
811 B
Markdown
|
# DecoratesBeforeRendering
|
||
|
|
||
|
A small add-on for [Draper](http://github.com/jcasimir/draper) that automatically decorates
|
||
|
specified controller instance variables before rendering. Currently only works on objects
|
||
|
that respond to ```model_name````, but this could easily be expanded upon.
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Add this line to your application's Gemfile:
|
||
|
|
||
|
gem 'decorates_before_rendering'
|
||
|
|
||
|
And then execute:
|
||
|
|
||
|
$ bundle
|
||
|
|
||
|
Or install it yourself as:
|
||
|
|
||
|
$ gem install decorates_before_rendering
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
See ```lib/decorates_before_rendering.rb``` for usage instructions.
|
||
|
|
||
|
## 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
|