less than 1 minute read

As someone who has built a hardware-based Morse Code sending system, I am very interested in state machines and their implementation.

I recently found a new ruby gem stately which seemed interesting. Like many packages, the documentation initially seemed confusing so a bit of exploring seemed appropriate. This note documents the little exploring that I did (mostly so I can return to it should I want to use this gem in an application. The two examples left when the dust settled are given in this gist.

My first attempt was to build a counter. I had a bit of problem getting the syntax right and when I retreated to the document’s examples, I found they were incomplete. My first successful attempt (from a syntax point of view was stately_demo_bad (see the gist).

It did not work because the method associated with defining all the details of the state machine appears to change the scope of some of the code into other internally defined classes yielding very unexpected behavior.

Moving everything to method (messages) inside the state machine seems to be the expected (and allowable) approach yielding stately_demo_good (see the gist).

Categories:

Original post:

Leave a comment