Skip to content

Commit f3ed13c

Browse files
authored
Merge pull request #12 from msgpack/develop
Added BaselineOfMessagePack
2 parents 17c796f + 12696d0 commit f3ed13c

File tree

12 files changed

+87
-18
lines changed

12 files changed

+87
-18
lines changed

doc/HowToInstall.md

Lines changed: 34 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,48 @@
1-
## How to install
1+
# How to install
22

3-
### Squeak:
3+
## Squeak:
44

5-
You can use Installer:
6-
```
7-
Installer squeaksource
8-
project: 'MetacelloRepository';
9-
install: 'ConfigurationOfMessagePack'.
10-
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.
5+
Hosted on SqueakSource Repository.
6+
(http://www.squeaksource.com/MessagePack.html).
7+
8+
From Monticello:
9+
10+
```smalltalk
11+
MCHttpRepository
12+
location: 'http://www.squeaksource.com/MessagePack'
13+
user: ''
14+
password: ''
1115
```
12-
### Pharo:
13-
You can use Gofer:
16+
17+
You can also use Installer:
18+
19+
```smalltalk
20+
Installer squeaksource
21+
project: 'MetacelloRepository';
22+
install: 'ConfigurationOfMessagePack'.
23+
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.
1424
```
15-
Gofer it
16-
url: 'http://smalltalkhub.com/mc/MasashiUmezawa/MessagePack/main';
17-
package: 'ConfigurationOfMessagePack';
18-
load.
19-
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.
25+
26+
## Pharo:
27+
28+
You can use Metacello:
29+
30+
```smalltalk
31+
Metacello new
32+
baseline: 'MessagePack';
33+
repository: 'github://msgpack/msgpack-smalltalk:develop/repository';
34+
load.
2035
```
21-
### VisualWorks:
36+
37+
## VisualWorks:
2238

2339
Hosted on [Public Store Repository](http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page).
2440
http://www.cincomsmalltalk.com/publicRepository/MessagePack-All(Bundle).html
2541

2642
You can also download parcels:
2743
http://code.google.com/p/messagepack-st/source/browse/#hg%2FVisualWorks
2844

29-
### VA Smalltalk:
45+
## VA Smalltalk:
3046

3147
Hosted on [VAStGoodies.com](http://vastgoodies.com).
3248

@@ -36,7 +52,7 @@ Tests: [MessagePackTests](http://vastgoodies.com/maps/MessagePack%20Tests).
3652
You can also download .dat files:
3753
http://code.google.com/p/messagepack-st/source/browse/#hg%2FVA%20Smalltalk
3854

39-
### Dolphin Smalltalk:
55+
## Dolphin Smalltalk:
4056

4157
Hosted on [Google Code site](<http://messagepack-st.googlecode.com>) (old version).
4258

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"separateMethodMetaAndSource" : false,
3+
"noMethodMetaData" : true,
4+
"useCypressPropertiesFile" : true
5+
}

repository/BaselineOfMessagePack.package/BaselineOfMessagePack.class/README.md

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
baseline
2+
baseline: spec
3+
<baseline>
4+
spec for: #common do: [
5+
spec
6+
package: 'MessagePack-Core';
7+
package: 'MessagePackTest' with: [ spec requires: 'MessagePack-Core' ].
8+
spec
9+
group: 'default' with: #('Core' 'Tests');
10+
group: 'Core' with: #('MessagePack-Core');
11+
group: 'Tests' with: #('MessagePackTest'). ].
12+
13+
spec for: #squeakCommon do: [
14+
spec
15+
package: 'MessagePack-Squeak-Core' with: [ spec requires: 'MessagePack-Core' ].
16+
spec
17+
group: 'Core' with: #('MessagePack-Squeak-Core'). ].
18+
spec for: #pharo do: [
19+
spec preLoadDoIt: #preLoadForPharo.
20+
spec
21+
package: 'MessagePack-Pharo-Core' with: [ spec requires: 'MessagePack-Squeak-Core' ].
22+
spec
23+
group: 'Core' with: #('MessagePack-Pharo-Core'). ].
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
doits
2+
preLoadForPharo
3+
Smalltalk globals at: #MpPhPortableUtil ifPresent: [ :cls | cls initialize].
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"instance" : {
3+
"preLoadForPharo" : "MasashiUmezawa 8/12/2018 14:37",
4+
"baseline:" : "MasashiUmezawa 8/12/2018 14:36"
5+
},
6+
"class" : { }
7+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"commentStamp" : "",
3+
"super" : "BaselineOf",
4+
"category" : "BaselineOfMessagePack",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
8+
"instvars" : [ ],
9+
"name" : "BaselineOfMessagePack",
10+
"type" : "normal"
11+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SystemOrganization addCategory: #BaselineOfMessagePack!

repository/BaselineOfMessagePack.package/monticello.meta/initializers.st

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(name 'BaselineOfMessagePack')

0 commit comments

Comments
 (0)