Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 34 additions & 18 deletions doc/HowToInstall.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,48 @@
## How to install
# How to install

### Squeak:
## Squeak:

You can use Installer:
```
Installer squeaksource
project: 'MetacelloRepository';
install: 'ConfigurationOfMessagePack'.
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.
Hosted on SqueakSource Repository.
(http://www.squeaksource.com/MessagePack.html).

From Monticello:

```smalltalk
MCHttpRepository
location: 'http://www.squeaksource.com/MessagePack'
user: ''
password: ''
```
### Pharo:
You can use Gofer:

You can also use Installer:

```smalltalk
Installer squeaksource
project: 'MetacelloRepository';
install: 'ConfigurationOfMessagePack'.
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.
```
Gofer it
url: 'http://smalltalkhub.com/mc/MasashiUmezawa/MessagePack/main';
package: 'ConfigurationOfMessagePack';
load.
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.

## Pharo:

You can use Metacello:

```smalltalk
Metacello new
baseline: 'MessagePack';
repository: 'github://msgpack/msgpack-smalltalk:develop/repository';
load.
```
### VisualWorks:

## VisualWorks:

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

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

### VA Smalltalk:
## VA Smalltalk:

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

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

### Dolphin Smalltalk:
## Dolphin Smalltalk:

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

Expand Down
5 changes: 5 additions & 0 deletions repository/BaselineOfMessagePack.package/.filetree
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"separateMethodMetaAndSource" : false,
"noMethodMetaData" : true,
"useCypressPropertiesFile" : true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
baseline
baseline: spec
<baseline>
spec for: #common do: [
spec
package: 'MessagePack-Core';
package: 'MessagePackTest' with: [ spec requires: 'MessagePack-Core' ].
spec
group: 'default' with: #('Core' 'Tests');
group: 'Core' with: #('MessagePack-Core');
group: 'Tests' with: #('MessagePackTest'). ].

spec for: #squeakCommon do: [
spec
package: 'MessagePack-Squeak-Core' with: [ spec requires: 'MessagePack-Core' ].
spec
group: 'Core' with: #('MessagePack-Squeak-Core'). ].
spec for: #pharo do: [
spec preLoadDoIt: #preLoadForPharo.
spec
package: 'MessagePack-Pharo-Core' with: [ spec requires: 'MessagePack-Squeak-Core' ].
spec
group: 'Core' with: #('MessagePack-Pharo-Core'). ].
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
doits
preLoadForPharo
Smalltalk globals at: #MpPhPortableUtil ifPresent: [ :cls | cls initialize].
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"instance" : {
"preLoadForPharo" : "MasashiUmezawa 8/12/2018 14:37",
"baseline:" : "MasashiUmezawa 8/12/2018 14:36"
},
"class" : { }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"commentStamp" : "",
"super" : "BaselineOf",
"category" : "BaselineOfMessagePack",
"classinstvars" : [ ],
"pools" : [ ],
"classvars" : [ ],
"instvars" : [ ],
"name" : "BaselineOfMessagePack",
"type" : "normal"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SystemOrganization addCategory: #BaselineOfMessagePack!
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(name 'BaselineOfMessagePack')
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(name 'BaselineOfMessagePack-MasashiUmezawa.1' message 'Added BaselineOfMessagePack' id '44154d34-982f-0d00-83a3-2e6a0a3ec998' date '12 August 2018' time '2:44:16.240166 pm' author 'MasashiUmezawa' ancestors () stepChildren ())
1 change: 1 addition & 0 deletions repository/BaselineOfMessagePack.package/properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ }