Skip to content

kaikash/gleborator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gleborator

It is velosiped of draper gem created by Gleb Vishnevsky.

Installation

Add this line to your application's Gemfile:

gem 'gleborator'

And then execute:

$ bundle

Or install it yourself as:

$ gem install gleborator

Usage

You have to call decorate method on what you want to decorate

# app/controllers/posts_controller.rb
def show
  @post = Post.find(params[:id]).decorate
end

It will search for PostDecorator and create instance of it. There you can create your own methods to keep your views cleaner.

# app/decorators/post_decorator.rb
class PostDecorator < ApplicationDecorator
  delegate :id, :title, :body
  delegate :name, to: :author, prefix: true

  def title_with_author_name
    "#{object.title} (#{object.author_name)})"
  end
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kaikash/gleborator.

License

The gem is available as open source under the terms of the MIT License.

About

Gleborator adds an decorators to models

Resources

License

Stars

Watchers

Forks

Packages

No packages published