Hi
I 'm trying to define a baseline for our project and I defined it as
baseline: spec
<baseline>
spec for: #common do: [ spec
baseline: 'SmaCC' with: [ spec
repository: 'github://ThierryGoubier/SmaCC';
loads: 'SmaCC-GLR-Runtime' ];
package: 'SmaCC-Solidity'
"we could say that SmaccSolidity depends on Smacc-Runtime but I do not
know how to say it"
]
Now I thought that I could try to load it using the following
Metacello new
baseline: 'SmaccSolidity';
repository: 'github://RMODINRIA-Blockchain/SmaCC-Solidity';
load.
But I get an error telling me that the baseline constructor does not
understand load ;(
I read the blog of peter
https://www.peteruhnak.com/blog/2016/07/25/how-to-use-git-and-github-with-pharo/
and I'm doing exactly the same so I wonder.
Stef