Skip to content

Commit

Permalink
Merge pull request #304 from dalehenrich/dev
Browse files Browse the repository at this point in the history
Merge last of bugfixes for 1.0.0-beta.32.16.

I'm going to go ahead and merge this pull request despite the existence of Issues with SSL on Squeak platforms: Issue #305 and Issue #303 ... the final resolution for these particular issues are still up in the air and I don't want to dely the release of 1.0.0-beta32.16 any longer ... will push bugfixes for those issues when we got things characterized correctly
  • Loading branch information
dalehenrich committed Oct 20, 2014
2 parents 91bddf6 + 6a37362 commit eb288ae
Show file tree
Hide file tree
Showing 505 changed files with 5,022 additions and 1,434 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ env:
# Squeak-4.5
# Squeak-Trunk

# - ST=Pharo-1.4 LoadList="'default'" TRAVIS_SCRIPT=userGuide.st
# - ST=GemStone-3.1.0.6 LoadList="'default'" TRAVIS_SCRIPT=userGuide.st # disable until Issue #241 addressed
- ST=Pharo-3.0 LoadList="'default'" TRAVIS_SCRIPT=userGuide.st
- ST=GemStone-3.2.2 LoadList="'default'" TRAVIS_SCRIPT=userGuide.st

- ST=Pharo-2.0 LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
- ST=Pharo-2.0 LoadList="'TravisCI_3'" TRAVIS_SCRIPT=travisCI.st
Expand All @@ -44,12 +44,11 @@ env:
- ST=Squeak-4.4 LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
- ST=Squeak-4.4 LoadList="'TravisCI_3'" TRAVIS_SCRIPT=travisCI.st

# see https://github.com/dalehenrich/metacello-work/issues/262
- ST=Squeak-Trunk LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
- ST=Squeak-Trunk LoadList="'TravisCI_3'" TRAVIS_SCRIPT=travisCI.st

# - ST=GemStone-2.4.4.1 LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
# - ST=GemStone-2.4.4.1 LoadList="'TravisCI_3'" TRAVIS_SCRIPT=travisCI.st
- ST=GemStone-2.4.4.1 LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
- ST=GemStone-2.4.4.1 LoadList="'TravisCI_3'" TRAVIS_SCRIPT=travisCI.st
# - ST=GemStone-2.4.4.7 LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
# - ST=GemStone-2.4.4.7 LoadList="'TravisCI_3'" TRAVIS_SCRIPT=travisCI.st
# - ST=GemStone-2.4.5 LoadList="'TravisCI_1' 'TravisCI_2'" TRAVIS_SCRIPT=travisCI.st
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ If you are interested in using GitHub with the Metacello Preview, you should che

**configuration branch**: [![Build Status](https://secure.travis-ci.org/dalehenrich/metacello-work.png?branch=configuration)](http://travis-ci.org/dalehenrich/metacello-work)

**1.0-beta.31.1.5 branch**: [![Build Status](https://secure.travis-ci.org/dalehenrich/metacello-work.png?branch=1.0-beta.31.1.5)](http://travis-ci.org/dalehenrich/metacello-work)

[1]: docs/GettingStartedWithGitHub.md
[2]: docs/MetacelloUserGuide.md
[3]: docs/MetacelloScriptingAPI.md
Expand Down
4 changes: 1 addition & 3 deletions docs/GettingStartedWithGitHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ you've done a git `checkout` or `pull`):
```Smalltalk
Metacello image
baseline: 'Sample';
get.
Metacello image
baseline: 'Sample';
get;
load.
```

Expand Down
5 changes: 2 additions & 3 deletions docs/LockCommandReference.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ Metacello new
repository: 'http://ss3.gemtalksystems.com/ss/external';
cacheRepository: 'filetree:///opt/git/externalDir/repository';
ignoreImage;
get; "get will download the ConfigurationOfExternal to the cache repository"
fetch: 'ALL'.
```
If you project is more complex (i.e., has dependent projects) then you
Expand Down Expand Up @@ -332,10 +333,8 @@ Use the following set of expressions to load the **Example** project:
Metacello new
baseline: 'Example';
repository: 'github://dalehenrich/example:otto/repository';
get.
Metacello registry
baseline: 'Example';
onLock: [ :ex | ex honor ];
get;
load: 'Tests'.
```
The `onLock:` block gets triggered every time a locked project is loaded,
Expand Down
12 changes: 11 additions & 1 deletion docs/MetacelloScriptingAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ conditions:
* You may be working with a git checkout of a project and you want to
continue using the git checkout.

you many not want to have particular projects upgraded automatically.
you may not want to have particular projects upgraded automatically.
The `lock` command gives you control.

You can lock a project to a particular version:
Expand Down Expand Up @@ -546,10 +546,20 @@ is rooted in the projects HOME directory.
####cacheRepository:
####ignoreImage
####onConflict:
####onConflictUseIncoming
####onConflictUseIncoming:useLoaded:
####onConflictUseLoaded
####onDowngrade:
####onDowngradeUseIncoming
####onDowngradeUseIncoming:
####onLock:
####onLockBreak
####onLockBreak:
####onUpgrade:
####onUpgradeUseLoaded
####onUpgradeUseLoaded:
####onWarning:
####onWarningLog
####silently
### Metacello Project Registry
### Classes
Expand Down
Loading

0 comments on commit eb288ae

Please sign in to comment.