Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

haberdasher

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

haberdasher

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Haberdasher

Dependency Status Build Status Code Climate

Decorator library providing a draper style API for Rails 2.3.x apps.

Installation

Rails 2.3.x

If you're using bundler, then add this line to your application's Gemfile:

gem 'haberdasher'

And then execute:

$ bundle

If you're not using bundler:

# in config/environment.rb
config.gem "haberdasher"

Usage

Writing Decorators

Similar to draper, decorators inherit from Haberdasher::Decorator, live in your app/decorators directory, and are named for the model that they decorate:

# app/decorators/article_decorator.rb
class ArticleDecorator < Haberdasher::Decorator
# ...
end

Using Decorators

Use #decorate

For the time being, explicitly #include the Haberdasher::Decoratoratable in your model:

# app/models/article.rb
class Article < ActiveRecord::Base
  include Haberdasher::Decoratoratable
  #other methods....
end

Or use the decorator explicitly without mixing any modules in

# app/controllers/articles_controller.rb
  def show
    @article = ArticleDecorator.new Article.find params[:id]
  end

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

FAQs

Package last updated on 14 May 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc