From f694d2f5240cbc847b0f765ee5d8e76f71d7f814 Mon Sep 17 00:00:00 2001 From: Casey Dahlin Date: Fri, 3 Oct 2008 17:58:42 -0400 Subject: Added missing deps attribute to State Code had assumed State had a deps attribute. It now does. --- state.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'state.rb') diff --git a/state.rb b/state.rb index 0994c65..951c259 100644 --- a/state.rb +++ b/state.rb @@ -26,6 +26,7 @@ An instance of State exists whenever a state can become true without having to toggle any other states, or whenever a state _is_ true. =end class State + attr :deps # What are our dependencies? attr :holds # Holds that are had on this state attr :active # Are we active? class << self -- cgit