X Tutup
Skip to content

Commit 77eb236

Browse files
author
Johan Brichau
committed
Merge 1bb20d1
2 parents d8f8ffa + 1bb20d1 commit 77eb236

File tree

36 files changed

+147
-133
lines changed

36 files changed

+147
-133
lines changed

.travis.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ aliases:
88
matrix:
99
allow_failures:
1010
- smalltalk: Pharo64-9.0
11-
- smalltalk: Squeak-trunk
12-
- smalltalk: Squeak-5.1
11+
- smalltalk: Squeak32-trunk
12+
- smalltalk: Squeak32-5.1
13+
- smalltalk: Squeak32-5.2
14+
- smalltalk: Squeak32-5.3
1315

1416
include:
1517
- smalltalk: Pharo64-9.0
@@ -27,11 +29,13 @@ matrix:
2729
- smalltalk: Pharo-4.0
2830
<<: *pharo4-has-latest-metacello
2931
env: BUILD_NAME=Pharo-4.0
30-
- smalltalk: Squeak-trunk
32+
- smalltalk: Squeak32-trunk
3133
env: BUILD_NAME=Squeak-trunk
32-
- smalltalk: Squeak-5.2
34+
- smalltalk: Squeak32-5.3
35+
env: BUILD_NAME=Squeak-5.3
36+
- smalltalk: Squeak32-5.2
3337
env: BUILD_NAME=Squeak-5.2
34-
- smalltalk: Squeak-5.1
38+
- smalltalk: Squeak32-5.1
3539
env: BUILD_NAME=Squeak-5.1
3640
- smalltalk: GemStone-3.5.0
3741
env: BUILD_NAME=GemStone-3.5.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Coveralls (experimental): [![Coverage Status](https://coveralls.io/repos/github/
3333

3434
#### Prerequisite on Squeak
3535

36-
Make sure you have the [MetacelloPreview version](https://github.com/dalehenrich/metacello-work), otherwise the load will not work.
36+
Make sure you have the [MetacelloPreview version](https://github.com/Metacello/metacello), otherwise the load will not work.
3737

3838
### Squeak and Pharo (4.0 or newer)
3939

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2-
"noMethodMetaData" : true,
32
"separateMethodMetaAndSource" : false,
4-
"useCypressPropertiesFile" : true }
3+
"noMethodMetaData" : true,
4+
"useCypressPropertiesFile" : true
5+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "BlockClosure" }
2+
"name" : "BlockClosure"
3+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "ByteArray" }
2+
"name" : "ByteArray"
3+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "Character" }
2+
"name" : "Character"
3+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "Collection" }
2+
"name" : "Collection"
3+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "Duration" }
2+
"name" : "Duration"
3+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "GRDelegatingStream" }
2+
"name" : "GRDelegatingStream"
3+
}
Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
2-
"category" : "Grease-Pharo30-Core",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "MaxLeske 5/16/2017 22:05",
8-
"instvars" : [
9-
],
10-
"name" : "GRDynamicVariable",
11-
"pools" : [
12-
],
133
"super" : "DynamicVariable",
14-
"type" : "normal" }
4+
"category" : "Grease-Pharo30-Core",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
8+
"instvars" : [ ],
9+
"name" : "GRDynamicVariable",
10+
"type" : "normal"
11+
}

0 commit comments

Comments
 (0)
X Tutup