Skip to content

Commit

Permalink
pick up Issue #66 changes on dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Mar 9, 2015
2 parents 0502d2a + 1781dda commit 4deb7e2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 15 deletions.
18 changes: 12 additions & 6 deletions pharo/todeLoad.st
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
[
"Master pharo todeLoad.st"
| gs_home metacello |
| gs_home |
gs_home := Smalltalk os environment at: 'GS_HOME'.
metacello := Metacello new
Metacello new
baseline: 'Metacello';
repository: 'github://dalehenrich/metacello-work:master/repository';
get.
Metacello new
baseline: 'Metacello';
repository: 'github://dalehenrich/metacello-work:master/repository';
onConflict: [:ex | ex allow];
load.
Metacello new
configuration: 'TodeClient';
version: #release;
repository: 'filetree://', gs_home, '/repository';
yourself.
metacello copy get. "cannot count on Pharo3.0 having latest Metacello loaded"
metacello
onConflict: [:ex | ex disallow];
get;
load ]
on: Warning
do: [:ex | Transcript cr; show: ex description ].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ version100: spec
with: [
spec
loads: 'GemStone Dev';
repository: 'github://dalehenrich/tode:v0.0.2/repository' ];
repository: 'github://dalehenrich/tode:v0.0.?/repository' ];
postLoadDoIt: #post30Load;
yourself ]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version200: spec
spec
for: #'pharo3.x'
do: [
spec blessing: #development.
spec blessing: #release.
spec description: 'Changes in support of https://github.com/GsDevKit/gsDevKitHome/issues/32'.
spec repository: 'filetree://' , (FileSystem workingDirectory parent / 'repository') pathString.
spec
Expand All @@ -19,6 +19,6 @@ version200: spec
with: [
spec
loads: 'GemStone Dev';
repository: 'github://dalehenrich/tode:v0.0.2/repository' ];
repository: 'github://dalehenrich/tode:v0.?/repository' ];
postLoadDoIt: #post30Load;
yourself ]
18 changes: 12 additions & 6 deletions tests/pharo/todeLoad.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@
"Tests pharo todeLoad.st"
| gs_home metacello |
gs_home := Smalltalk os environment at: 'GS_HOME'.
metacello := Metacello new
Metacello new
baseline: 'Metacello';
repository: 'github://dalehenrich/metacello-work:master/repository';
get.
Metacello new
baseline: 'Metacello';
repository: 'github://dalehenrich/metacello-work:master/repository';
onConflict: [:ex | ex allow];
load.
Metacello new
configuration: 'TodeClient';
version: #dev;
repository: 'filetree://', gs_home, '/repository';
yourself.
metacello copy get. "cannot count on Pharo3.0 having latest Metacello loaded"
metacello
onConflict: [:ex | ex disallow];
load ]
get;
load ]
on: Warning
do: [:ex | Transcript cr; show: ex description ].

0 comments on commit 4deb7e2

Please sign in to comment.