项目作者: Isty001

项目描述 :
Chainable method decorators for Ruby
高级语言: Ruby
项目地址: git://github.com/Isty001/method_decorator.rb.git
创建时间: 2019-10-31T09:28:31Z
项目社区:https://github.com/Isty001/method_decorator.rb

开源协议:MIT License

下载


MethodDecorator

Method decorator implementation for Ruby, similar to Python. Inspired by this article.

Installation

Add this line to your application’s Gemfile:

  1. gem 'method_decorator.rb'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install method_decorator.rb

Usage and Examples

Decorators can be used to wrap around method calls. Decoators can have their own arguments, including blocks. When the method is called, each decorator will be called in order, receiving the caller instance, the return value of the previous decorator, and the method’s arguments and block.

  1. class Multiply < Decorator::Base
  2. def call(this, args, ret, &block)
  3. multiplier, = @decorator_args
  4. return multiplier * ret if ret
  5. multiplier * original(this, *args, &block)
  6. end
  7. end
  8. class Controller
  9. extend Decorator::DecoratorAware
  10. Multiply(2)
  11. Multiply(3)
  12. def index
  13. 10
  14. end
  15. end
  16. puts Controller.new.index # 60

Decorators can have names other than the class:

  1. class DivideDecorator < Decorator::Base
  2. decorator_name :divide
  3. def call(this, args, ret, &block)
  4. #
  5. end
  6. end

They can also receive their own block:

  1. class Route < Decorator::Base
  2. def call(this, args, ret, &block)
  3. @decorator_block.call
  4. end
  5. end
  6. class Controller
  7. extend Decorator::DecoratorAware
  8. Route(:get, '/') { p "hello" }
  9. def index
  10. 10
  11. end
  12. end
  13. Controller.new.index # Hello

License

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