From 25ba9a8c964e1d3cdcf81ed173de78c2c6f40cb3 Mon Sep 17 00:00:00 2001 From: Aaron Pfeifer Date: Mon, 1 Apr 2013 21:33:46 -0400 Subject: [PATCH] Fix missing dependency require in EventCollection --- lib/state_machine/event_collection.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/state_machine/event_collection.rb b/lib/state_machine/event_collection.rb index 83a40a46..372b7373 100644 --- a/lib/state_machine/event_collection.rb +++ b/lib/state_machine/event_collection.rb @@ -1,3 +1,5 @@ +require 'state_machine/node_collection' + module StateMachine # Represents a collection of events in a state machine class EventCollection < NodeCollection