MetacelloScriptEnsureProjectLoadedForDevelopment.st
changeset 1 9e312de5f694
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MetacelloScriptEnsureProjectLoadedForDevelopment.st	Mon Sep 03 11:13:41 2012 +0000
@@ -0,0 +1,29 @@
+"{ Package: 'stx:goodies/metacello' }"
+
+MetacelloScriptNotification subclass:#MetacelloScriptEnsureProjectLoadedForDevelopment
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Metacello-Core-Scripts'
+!
+
+
+!MetacelloScriptEnsureProjectLoadedForDevelopment methodsFor:'exception handling'!
+
+defaultAction
+    "Go ahead and download a new copy of configuration because blessing is #development"
+
+    ^ true
+! !
+
+!MetacelloScriptEnsureProjectLoadedForDevelopment methodsFor:'handlers'!
+
+handleResolutionFor: aScriptEngine
+    ^ aScriptEngine handleEnsureProjectLoadedForDevelopment: self
+! !
+
+!MetacelloScriptEnsureProjectLoadedForDevelopment class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id::                                                                                                                        $'
+! !