Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1006 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 1006 Bytes

Interactor Sample

Check the demo

This is a simple app using the Interactor gem.

What does this app do ?

  • Use interactors in order to handle the new comment
    • One interactor to actually store the comment
    • One to send a ThankYou message to the commenter (not really send anything)
    • One to log the event through a Mixpanel kind of app (not really logging anything)
  • Show an example of a rollback, just check the box before adding a comment
  • Show an example of hook usage
  • Show an example with multiple hooks
  • The code also contains some test best practices

Setting up the app

$> git@github.com:beNjiox/interactor-sample.git
$> cd interactor-sample
$> rake db:migrate

If you clone the app, check out the logs! It will help you see how things are executed, in which order etc.

If you have any question, or want to see more stuff within this example app, feel free to create an issue.