- CypressAbstractWriter
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 02 Oct 2012 09:15:02 +0000
changeset 22 9086d6f7096a
parent 21 c88f472e1c23
child 23 c9db5d8c9d2e
- CypressAbstractWriter changed: #writePackage:to: - CypressAbstractReaderWriter added: #defaultFileNameForPackageNamed: - extensions ...
CypressAbstractReaderWriter.st
CypressAbstractWriter.st
cypress.rc
stx_goodies_cypress.st
--- a/CypressAbstractReaderWriter.st	Tue Oct 02 09:01:43 2012 +0000
+++ b/CypressAbstractReaderWriter.st	Tue Oct 02 09:15:02 2012 +0000
@@ -51,16 +51,6 @@
     "Created: / 17-09-2012 / 18:11:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
-defaultFileNameForClassPackageNamed:aCypressPackage 
-    ^ ((aCypressPackage name copy)
-        replaceAll:$: with:$_;
-        replaceAll:$/ with:$_;
-        yourself) , '.' 
-        , self defaultFileSuffixForPackage
-
-    "Created: / 17-09-2012 / 17:32:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-!
-
 defaultFileNameForComment
     ^ repository properties at:'commentFile' ifAbsent:[ 'README.md' ]
 
@@ -78,6 +68,16 @@
     "Created: / 17-09-2012 / 18:22:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
+defaultFileNameForPackageNamed:aCypressPackage 
+    ^ ((aCypressPackage name copy)
+        replaceAll:$: with:$_;
+        replaceAll:$/ with:$_;
+        yourself) , '.' 
+        , self defaultFileSuffixForPackage
+
+    "Created: / 17-09-2012 / 17:32:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 defaultFileNameForProperties
     ^ 'properties.ston'
 
--- a/CypressAbstractWriter.st	Tue Oct 02 09:01:43 2012 +0000
+++ b/CypressAbstractWriter.st	Tue Oct 02 09:15:02 2012 +0000
@@ -59,7 +59,7 @@
 writePackage: cpackage to: directory
 
     self writePackage: cpackage 
-                   as: (self defaultFileNameForClassPackageNamed:cpackage)
+                   as: (self defaultFileNameForPackageNamed:cpackage)
                    to: directory
 
     "Created: / 17-09-2012 / 17:34:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
--- a/cypress.rc	Tue Oct 02 09:01:43 2012 +0000
+++ b/cypress.rc	Tue Oct 02 09:15:02 2012 +0000
@@ -25,7 +25,7 @@
       VALUE "LegalCopyright", "Copyright Jan Vrany & Dale Henrichs 2012\0"
       VALUE "ProductName", "Cypress\0"
       VALUE "ProductVersion", "6.2.3.1\0"
-      VALUE "ProductDate", "Tue, 02 Oct 2012 09:03:00 GMT\0"
+      VALUE "ProductDate", "Tue, 02 Oct 2012 09:16:23 GMT\0"
     END
 
   END
--- a/stx_goodies_cypress.st	Tue Oct 02 09:01:43 2012 +0000
+++ b/stx_goodies_cypress.st	Tue Oct 02 09:15:02 2012 +0000
@@ -171,7 +171,7 @@
     "Return a SVN revision number of myself.
      This number is updated after a commit"
 
-    ^ "$SVN-Revision:"'18              '"$"
+    ^ "$SVN-Revision:"'21              '"$"
 ! !
 
 !stx_goodies_cypress class methodsFor:'documentation'!