Socket
Book a DemoInstallSign in
Socket

durable_decorator_rails

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

durable_decorator_rails

bundlerRubygems
Version
0.2.4
Version published
Maintainers
1
Created
Source

DurableDecoratorRails

This integrates durable_decorator with Rails.

Installation

Add this line to your application's Gemfile:

gem 'durable_decorator_rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install durable_decorator_rails

Usage

This gem will generate the correct file structure, place (or append to) the correct decorator and even insert the correct seal for you. Use:

rails g decorator [FULL_METHOD_NAME]

For example, let us decorate the existing #deleted? instance method from the gem that is namespaced under Spree in a file that is a model called Product. Just run:

rails g decorator Spree::Product#deleted?

The gem will create the app/models/spree/product_decorator.rb file for you to start with, and it will have the following contents:

Spree::Product.class_eval do  

  durably_decorate :deleted?, mode: 'strict', sha: '9dc99742ed3ebbdd5b2cbd7c3c93d730e5244e72' do 
  end  

end

Otherwise, you may access the SHA of any method in memory with:

rake durable_decorator:determine_sha[Spree::Product#deleted?]

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

FAQs

Package last updated on 21 Feb 2014

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