CQRS and Event Driven Development architecture for Ruby


Keywords
architectural-patterns, cqrs, event-driven, gem, rails, ruby, ruby-gem
License
MIT
Install
gem install evnt -v 3.7.0

Documentation

Evnt

Gem Version Inline docs

CQRS and Event Driven Development architecture for Ruby projects.

Evnt is a Ruby gem used to design software following the CQRS and Event driven development pattern. The idea behind Evnt is to develop the business logic of the system using three different classes:

  • Commands: actions executed by actors that can be completed or stopped by the system.
  • Events: something that it's already happen and should be logged somewhere.
  • Handlers: event listeners that perform specific tasks.

The full documentation of these classes can be found here: https://github.com/ideonetwork/evnt/wiki

Installation

To use the gem you need to add it on your Gemfile

Latest version

gem 'evnt', git: 'https://github.com/ideonetwork/evnt'

Legacy version

gem 'evnt'

Development

RDoc documentation

To update the rdoc documentation run:

rdoc --op rdoc