piotrmurach/finite_machine

Event names collide with instance names

wbreeze opened this issue · 1 comments

Some event names collide with instance methods in FiniteMachine.

events {
    event :subscribe, [:zero, :time, :count] => :subscription_refundable
}
You tried to define an event named "subscribe", however this would generate "instance" method "subscribe", which is already defined by FiniteMachine

This is going to come up again and again until documented. But I get it, now.