Skip to content

Commit

Permalink
Moved code of Seaside-Pharo-REST-Core to Seaside-Squeak-REST-Core
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrichau committed May 22, 2022
1 parent 50d2f24 commit b78d723
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 4 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
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
@@ -1 +1 @@
(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 ())
(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 ())

0 comments on commit b78d723

Please sign in to comment.