All Projects → fbonetti → Method_hooks

fbonetti / Method_hooks

Licence: mit
Rails-style method hooks for plain old Ruby objects

Programming Languages

ruby
36898 projects - #4 most used programming language

Build Status

MethodHooks

Allows you to add before, around, and after callbacks to any method.

Installation

Add this line to your application's Gemfile:

gem 'method_hooks'

And then execute:

$ bundle

Or install it yourself as:

$ gem install method_hooks

Usage

class Model
  extend MethodHooks

  before :save do
    puts 'before'
  end

  around :save do |method|
    puts 'before_around'
    method.call
    puts 'after_around'
  end

  after :save, :foo do
    puts 'after'
  end

  def save
    puts 'save'
  end

  def foo
    puts 'foo'
  end

end

model = Model.new
model.save
model.foo

=begin

Outputs the following:

before
before_around
save
after_around
after
foo
after

=end

You can also specify a method to be called instead of using a block:

class Model
  extend MethodHooks

  before :save, :my_method

  def save
    puts 'save'
  end

  private

  def my_method
    puts 'my_method'
  end

end

model = Model.new
model.save

=begin

Outputs the following:

my_method
save

=end

Contributing

  1. Fork it ( https://github.com/[my-github-username]/method_hooks/fork )
  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 a new Pull Request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].