diff --git a/src/TinyBlog.package/.filetree b/src/TinyBlog.package/.filetree new file mode 100644 index 0000000..8998102 --- /dev/null +++ b/src/TinyBlog.package/.filetree @@ -0,0 +1,4 @@ +{ + "noMethodMetaData" : true, + "separateMethodMetaAndSource" : false, + "useCypressPropertiesFile" : true } diff --git a/src/TinyBlog.package/TBPost.class/README.md b/src/TinyBlog.package/TBPost.class/README.md new file mode 100644 index 0000000..57af180 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/README.md @@ -0,0 +1 @@ +I’m a blog post. \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/class/title.text..st b/src/TinyBlog.package/TBPost.class/class/title.text..st new file mode 100644 index 0000000..13d55c2 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/class/title.text..st @@ -0,0 +1,6 @@ +action +title: aTitle text: aText + ^ self new + title: aTitle; + text: aText; + yourself \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/class/title.text.category..st b/src/TinyBlog.package/TBPost.class/class/title.text.category..st new file mode 100644 index 0000000..52134fd --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/class/title.text.category..st @@ -0,0 +1,5 @@ +action +title: aTitle text: aText category: aCategory + ^ (self title: aTitle text: aText) + category: aCategory; + yourself \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/class/unclassifiedTag.st b/src/TinyBlog.package/TBPost.class/class/unclassifiedTag.st new file mode 100644 index 0000000..f2b17f0 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/class/unclassifiedTag.st @@ -0,0 +1,3 @@ +initialization +unclassifiedTag + ^ 'Unclassified' \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/beVisible.st b/src/TinyBlog.package/TBPost.class/instance/beVisible.st new file mode 100644 index 0000000..1caa9bb --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/beVisible.st @@ -0,0 +1,3 @@ +action +beVisible + self visible: true \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/category..st b/src/TinyBlog.package/TBPost.class/instance/category..st new file mode 100644 index 0000000..ee12458 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/category..st @@ -0,0 +1,3 @@ +accessing +category: c + category := c \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/category.st b/src/TinyBlog.package/TBPost.class/instance/category.st new file mode 100644 index 0000000..04be151 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/category.st @@ -0,0 +1,3 @@ +accessing +category + ^ category \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/date..st b/src/TinyBlog.package/TBPost.class/instance/date..st new file mode 100644 index 0000000..a159634 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/date..st @@ -0,0 +1,3 @@ +accessing +date: d + date := d \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/date.st b/src/TinyBlog.package/TBPost.class/instance/date.st new file mode 100644 index 0000000..c536804 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/date.st @@ -0,0 +1,3 @@ +accessing +date + ^ date \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/dontBeVisible.st b/src/TinyBlog.package/TBPost.class/instance/dontBeVisible.st new file mode 100644 index 0000000..94be03b --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/dontBeVisible.st @@ -0,0 +1,3 @@ +action +dontBeVisible + self visible: false \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/initialize.st b/src/TinyBlog.package/TBPost.class/instance/initialize.st new file mode 100644 index 0000000..ab4d5a9 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/initialize.st @@ -0,0 +1,5 @@ +initialization +initialize + self category: self class unclassifiedTag. + self date: Date today. + self dontBeVisible \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/isUnclassified.st b/src/TinyBlog.package/TBPost.class/instance/isUnclassified.st new file mode 100644 index 0000000..b032684 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/isUnclassified.st @@ -0,0 +1,3 @@ +action +isUnclassified + ^ self category = self class unclassifiedTag \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/isVisible.st b/src/TinyBlog.package/TBPost.class/instance/isVisible.st new file mode 100644 index 0000000..4b6b88a --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/isVisible.st @@ -0,0 +1,3 @@ +action +isVisible + self visible \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/text..st b/src/TinyBlog.package/TBPost.class/instance/text..st new file mode 100644 index 0000000..8e1fff0 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/text..st @@ -0,0 +1,3 @@ +accessing +text: t + text := t \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/text.st b/src/TinyBlog.package/TBPost.class/instance/text.st new file mode 100644 index 0000000..3251dea --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/text.st @@ -0,0 +1,3 @@ +accessing +text + ^ text \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/title..st b/src/TinyBlog.package/TBPost.class/instance/title..st new file mode 100644 index 0000000..2bbfc42 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/title..st @@ -0,0 +1,3 @@ +accessing +title: t + title := t \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/title.st b/src/TinyBlog.package/TBPost.class/instance/title.st new file mode 100644 index 0000000..fc1a896 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/title.st @@ -0,0 +1,3 @@ +accessing +title + ^ title \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/visible..st b/src/TinyBlog.package/TBPost.class/instance/visible..st new file mode 100644 index 0000000..1acb98a --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/visible..st @@ -0,0 +1,3 @@ +accessing +visible: v + visible := v \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/instance/visible.st b/src/TinyBlog.package/TBPost.class/instance/visible.st new file mode 100644 index 0000000..0b75c10 --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/instance/visible.st @@ -0,0 +1,3 @@ +accessing +visible + ^ visible \ No newline at end of file diff --git a/src/TinyBlog.package/TBPost.class/properties.json b/src/TinyBlog.package/TBPost.class/properties.json new file mode 100644 index 0000000..76c6aaf --- /dev/null +++ b/src/TinyBlog.package/TBPost.class/properties.json @@ -0,0 +1,18 @@ +{ + "category" : "TinyBlog", + "classinstvars" : [ + ], + "classvars" : [ + ], + "commentStamp" : "VeitHeller 4/30/2018 15:16", + "instvars" : [ + "title", + "text", + "date", + "category", + "visible" ], + "name" : "TBPost", + "pools" : [ + ], + "super" : "Object", + "type" : "normal" } diff --git a/src/TinyBlog.package/monticello.meta/categories.st b/src/TinyBlog.package/monticello.meta/categories.st new file mode 100644 index 0000000..756fb29 --- /dev/null +++ b/src/TinyBlog.package/monticello.meta/categories.st @@ -0,0 +1 @@ +SystemOrganization addCategory: #TinyBlog! diff --git a/src/TinyBlog.package/monticello.meta/initializers.st b/src/TinyBlog.package/monticello.meta/initializers.st new file mode 100644 index 0000000..e69de29 diff --git a/src/TinyBlog.package/monticello.meta/package b/src/TinyBlog.package/monticello.meta/package new file mode 100644 index 0000000..fbc6eda --- /dev/null +++ b/src/TinyBlog.package/monticello.meta/package @@ -0,0 +1 @@ +(name 'TinyBlog') \ No newline at end of file diff --git a/src/TinyBlog.package/properties.json b/src/TinyBlog.package/properties.json new file mode 100644 index 0000000..f037444 --- /dev/null +++ b/src/TinyBlog.package/properties.json @@ -0,0 +1,2 @@ +{ + }