RailsPresenter::Base
it should ease the pain of creating a presenter that requires to access Rails helper methods
- it should be able to call rails render method for partials
- it should be able to use capture(&block).to_s
- it should be able to use helper methods such as content_tag
- when using image_tag, it should be able to find content in app/assets
Installation
Add this line to your application's Gemfile:
gem 'rails-presenter'
And then execute:
$ bundle
Usage
class ExamplePresenter < RailsPresenter::Base
# This is important, you need to call super, for the asset pipeline to work.
def initialize
super()
end
def example_image_from_the_pipeline
image_tag('image.png')
end
def example_render_partial(view)
view.render('partial/part', title: 'text')
end
def example_yield_content
yield
end
def example_content_tag
content_tag(:article, 'foo'.html_safe, class: 'foo', id: 'bar')
end
end
Contributing
- Fork it ( https://github.com/somekool/rails-presenter/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Carefully look at your changes (
git diff
) - Individually stage files (
git add
) - Commit your changes (
git commit -m 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request