Project

evnt

0.0
No release in over 3 years
Low commit activity in last 3 years
CQRS and Event Driven Development architecture for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 5.0
~> 3.0
 Project Readme

Evnt

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/gregogalante/evnt/wiki

Installation

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

Latest version

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

Legacy version

gem 'evnt'

Development

RDoc documentation

To update the rdoc documentation run:

rdoc --op rdoc