-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #931 from marianopeck/gemstone34
Fixes to make Seaside 3.2 load in GemStone 3.4
- Loading branch information
Showing
8 changed files
with
44 additions
and
35 deletions.
There are no files selected for viewing
51 changes: 27 additions & 24 deletions
51
...itory/BaselineOfSeaside3.package/BaselineOfSeaside3.class/instance/baselinefilesystem..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
baselines | ||
baselinefilesystem: spec | ||
|
||
spec for: #'squeakCommon' do: [ | ||
|
||
spec | ||
package: 'Seaside-FileSystem' with: [ spec requires: #('Seaside-Core') ]; | ||
package: 'Seaside-Tests-FileSystem' with: [ spec requires: #('Seaside-FileSystem') ]. | ||
|
||
spec | ||
group: 'Filesystem' with: #('Seaside-FileSystem' ); | ||
group: 'Filesystem Tests' with: #( 'Filesystem' 'Seaside-Tests-FileSystem'); | ||
group: 'Tests' with: #('Filesystem Tests') | ||
]. | ||
|
||
spec for: #pharo do: [ | ||
spec | ||
package: 'Seaside-Pharo-FileSystem'; | ||
package: 'Seaside-FileSystem' with: [ spec includes: 'Seaside-Pharo-FileSystem' ]. | ||
]. | ||
|
||
spec for: #'gemstone' do: [ | ||
spec | ||
package: 'Seaside-GemStone-FileSystem'; | ||
package: 'Seaside-FileSystem' with: [ | ||
spec includes: 'Seaside-GemStone-FileSystem' ] ] | ||
spec | ||
for: #'common' | ||
do: [ | ||
spec | ||
package: 'Seaside-FileSystem' | ||
with: [ spec requires: #('Seaside-Core') ]; | ||
package: 'Seaside-Tests-FileSystem' | ||
with: [ spec requires: #('Seaside-FileSystem') ]. | ||
spec | ||
group: 'Filesystem' with: #('Seaside-FileSystem'); | ||
group: 'Filesystem Tests' | ||
with: #('Filesystem' 'Seaside-Tests-FileSystem'); | ||
group: 'Tests' with: #('Filesystem Tests') ]. | ||
spec | ||
for: #'pharo' | ||
do: [ | ||
spec | ||
package: 'Seaside-Pharo-FileSystem'; | ||
package: 'Seaside-FileSystem' | ||
with: [ spec includes: 'Seaside-Pharo-FileSystem' ] ]. | ||
spec | ||
for: #'gemstone' | ||
do: [ | ||
spec | ||
package: 'Seaside-GemStone-FileSystem'; | ||
package: 'Seaside-FileSystem' | ||
with: [ spec includes: 'Seaside-GemStone-FileSystem' ] ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/BaselineOfSeaside3.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #BaselineOfSeaside3! | ||
SystemOrganization addCategory: #'BaselineOfSeaside3'! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...Seaside-GemStone-FileSystem.package/GRGemStonePlatform.extension/instance/fileNameFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
*seaside-gemstone-filesystem | ||
fileNameFor: aPathString | ||
^ (FileDirectory forFileName: aPathString) pathName | ||
"aa | ||
" | ||
|
||
^ (FileDirectory on: aPathString) pathName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Seaside-GemStone-FileSystem.package/monticello.meta/version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters