X Tutup
Skip to content

Commit 2dbfa7b

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#112 from SeasideSt/codecs-gemstone
Codecs gemstone
2 parents ddcbbaf + 3eec1fe commit 2dbfa7b

File tree

66 files changed

+467
-353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+467
-353
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ matrix:
3333
env: BUILD_NAME=Squeak-5.2
3434
- smalltalk: Squeak32-5.1
3535
env: BUILD_NAME=Squeak-5.1
36-
- smalltalk: GemStone-3.5.2
37-
env: BUILD_NAME=GemStone-3.5.2
36+
- smalltalk: GemStone-3.5.4
37+
env: BUILD_NAME=GemStone-3.5.4
3838
- smalltalk: GemStone-3.4.5
3939
env: BUILD_NAME=GemStone-3.4.5
4040
- smalltalk: GemStone-3.3.9
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"separateMethodMetaAndSource" : false,
32
"noMethodMetaData" : true,
4-
"useCypressPropertiesFile" : true
5-
}
3+
"separateMethodMetaAndSource" : false,
4+
"useCypressPropertiesFile" : true }

repository/BaselineOfGrease.package/BaselineOfGrease.class/instance/baselineGemStone..st

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,26 @@ baselineGemStone: spec
9696
package: 'Grease-Tests-Core'
9797
with: [ spec includes: 'Grease-Tests-GemStone-Core' ] ].
9898

99+
spec
100+
for: #( #'gs3.5.4.x' #'gs3.5.5.x')
101+
do: [
102+
spec
103+
package: 'Grease-GemStone-Core'
104+
with: [ spec includes: #('Grease-GemStone-Kernelv354') ];
105+
package: 'Grease-GemStone-Kernelv354'
106+
with: [
107+
spec
108+
requires: #('Grease-GemStone-Core') ] ].
109+
spec
110+
for: #( #'gs3.6.x')
111+
do: [
112+
spec
113+
package: 'Grease-GemStone-Core'
114+
with: [ spec includes: #('Grease-GemStone-Kernelv360') ];
115+
package: 'Grease-GemStone-Kernelv360'
116+
with: [
117+
spec
118+
requires: #('Grease-GemStone-Core') ] ].
99119
spec
100120
for: #(#'gs3.2.x' #'gs3.3.x' #'gs3.4.x' #'gs3.5.x' #'gs3.6.x')
101121
do: [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
accessing
22
projectClass
33
Smalltalk at: #'MetacelloCypressBaselineProject' ifPresent: [ :cl | ^ cl ].
4-
^ super projectClass
4+
^ super projectClass
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
2-
"commentStamp" : "",
3-
"super" : "BaselineOf",
42
"category" : "BaselineOfGrease",
5-
"classinstvars" : [ ],
6-
"pools" : [ ],
7-
"classvars" : [ ],
8-
"instvars" : [ ],
3+
"classinstvars" : [
4+
],
5+
"classvars" : [
6+
],
7+
"commentStamp" : "",
8+
"instvars" : [
9+
],
910
"name" : "BaselineOfGrease",
10-
"type" : "normal"
11-
}
11+
"pools" : [
12+
],
13+
"super" : "BaselineOf",
14+
"type" : "normal" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SystemOrganization addCategory: #BaselineOfGrease!
1+
SystemOrganization addCategory: #'BaselineOfGrease'!
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
{ }
1+
{
2+
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"separateMethodMetaAndSource" : false,
32
"noMethodMetaData" : true,
4-
"useCypressPropertiesFile" : true
5-
}
3+
"separateMethodMetaAndSource" : false,
4+
"useCypressPropertiesFile" : true }
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
{
2-
"name" : "Character"
3-
}
2+
"name" : "Character" }
Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
2-
"commentStamp" : "jf 3/14/2009 11:04",
3-
"super" : "GRDelayedSendMessage",
42
"category" : "Grease-Core-Utilities",
5-
"classinstvars" : [ ],
6-
"pools" : [ ],
7-
"classvars" : [ ],
3+
"classinstvars" : [
4+
],
5+
"classvars" : [
6+
],
7+
"commentStamp" : "jf 3/14/2009 11:04",
88
"instvars" : [
9-
"arguments"
10-
],
9+
"arguments" ],
1110
"name" : "GRBoundMessage",
12-
"type" : "normal"
13-
}
11+
"pools" : [
12+
],
13+
"super" : "GRDelayedSendMessage",
14+
"type" : "normal" }

0 commit comments

Comments
 (0)
X Tutup