Sha256: 78cfb5805e7cec6774c03eb2c431cb5c295bcc3231622f1899975048e5236e05

Contents?: true

Size: 712 Bytes

Versions: 1

Compression:

Stored size: 712 Bytes

Contents

# Yuuki

A caller / runner framework for Ruby.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'yuuki'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install yuuki

## Usage

```ruby
class HogeClass
  add :a
  def a
    puts 'a'
  end

  add :b
  tag :b, :tag_b
  def b
    puts 'b'
  end
end

yuuki = Yuuki::Caller.new(HogeClass)
yuuki.run
# a
# b

yuuki.run_tag(:tag_b)
# b
```

## Contributing

Bug reports and pull requests are welcome on GitHub at [https://github.com/ishotihadus/yuuki](https://github.com/ishotihadus/yuuki).

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yuuki-0.1.1 README.md