Installation

# Add this to your shard.yml
dependencies:
  callback:
    github: amberframework/callback
    version: ~> 0.9.2

Then run:

shards install

shard.yml

Crystal
>= 0.26.0, < 2.0
License
MIT
Author
mosop

Dependencies

Development Dependencies

  • stdio~> 0.1.4github: mosop/stdiodev

README

Crystal Callback

A Crystal library for defining and invoking callbacks.

Build Status

Installation

Add this to your application's shard.yml:

dependencies:
  callback:
    github: mosop/callback

Usage

require "callback"

class Record
  Callback.enable
  define_callback_group :save

  before_save do
    puts "before"
  end

  around_save do
    puts "around"
  end

  after_save do
    puts "after"
  end

  on_save do
    puts "on"
  end

  def save
    run_callbacks_for_save do
      puts "yield"
    end
  end
end

rec = Record.new
rec.save

This prints:

before
around
on
yield
around
after

For more detail, see Wiki

Release Notes

See Releases.