Skip to content

Commit

Permalink
Merge pull request #1313 from SeasideSt/squeak-rest-fix
Browse files Browse the repository at this point in the history
Squeak rest fix
  • Loading branch information
jbrichau authored May 22, 2022
2 parents 9774169 + b78d723 commit daa776a
Show file tree
Hide file tree
Showing 16 changed files with 47 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ To install the latest stable version of Seaside in a [Squeak](http://www.squeak.
```Smalltalk
Installer ensureRecentMetacello.
```
From there on, follow the [installation instructions for Seaside in Pharo](README.md#install-in-pharo).
From there on, follow the [installation instructions for Seaside in Pharo](README.md#instructions-for-pharo).

#### Squeak < 5.2
Make sure you have installed [Metacello](https://github.com/Metacello/metacello#squeak-older-than-squeak52). From there on, follow the [installation instructions for Seaside in Pharo](README.md#install-in-pharo).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ baselinerest: spec

spec for: #(squeak) do:[
spec
package: 'Seaside-Pharo-REST-Core';
package: 'Seaside-Squeak-REST-Core';
package: 'Seaside-REST-Core' with:[
spec includes: #('Seaside-Pharo-REST-Core')];
spec includes: #('Seaside-Squeak-REST-Core')];
package: 'Seaside-Squeak-Swagger-Core';
package: 'Seaside-Pharo-Swagger-Core';
package: 'Seaside-Swagger-Core' with: [
Expand Down
4 changes: 4 additions & 0 deletions repository/Seaside-Squeak-REST-Core.package/.filetree
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"noMethodMetaData" : true,
"separateMethodMetaAndSource" : false,
"useCypressPropertiesFile" : true }
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*seaside-squeak-rest-core
seasideSqueakRestCore
^ self new
name: 'Seaside-Squeak-REST-Core';
description: 'Write RESTful web services using Seaside';
addDependency: 'Seaside-REST-Core';
url: #seasideUrl;
yourself
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"class" : {
"seasideSqueakRestCore" : "JB 5/22/2022 14:56" },
"instance" : {
} }
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
"name" : "GRPackage" }
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*seaside-squeak-rest-core
argumentNamesOf: aCompiledMethod
^ aCompiledMethod methodNode arguments collect: [ :each | each key ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"class" : {
},
"instance" : {
"argumentNamesOf:" : "pmm 5/8/2012 19:11:54" } }
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
"name" : "GRPharoPlatform" }
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*seaside-squeak-rest-core
selectorOfPragma: aPragma

^aPragma keyword
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"class" : {
},
"instance" : {
"selectorOfPragma:" : "JB 5/22/2022 14:48" } }
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
"name" : "GRSqueakPlatform" }
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(name 'Seaside-Squeak-REST-Core')
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(name 'Seaside-Squeak-REST-Core-JB.2' message 'Moved code of Seaside-Pharo-REST-Core to Seaside-Squeak-REST-Core' id '54a5ecd1-8d78-4d54-8664-8e7f8d55124b' date '22 May 2022' time '3:02:42.868646 pm' author 'JB' ancestors ((name 'Seaside-Squeak-REST-Core-JB.1' message 'Added implementation for selectorOfPragma in Squeak' id '5ec54fa8-b64a-48c6-8482-cb741e921b8a' date '22 May 2022' time '2:53:36.146894 pm' author 'JB' ancestors () stepChildren ())) stepChildren ())
2 changes: 2 additions & 0 deletions repository/Seaside-Squeak-REST-Core.package/properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}

0 comments on commit daa776a

Please sign in to comment.