Specifying Changesets

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Specifying Changesets

Sean P. DeNigris
Administrator
I know it's probably blasphemy j/k, but can I load an .st or .cs file via metacello specs? While waiting for a fix to be applied to Pharo 1.4, I want to load a patch in a .st file. I tried:

                spec package: 'Issue6386' with: [
                        spec
                                repository: '/path/to/Issue 6386';
                                file: 'Process-psValueAtput.st' ].
                spec group: 'Core' with: #('Issue6386')

But it didn't seem to work, and googling "metacello filein" and "metacello changeset" didn't yield anything that looked relevant... I guess the workaround would be to either package it up or do a preload doit...
Cheers,
Sean
Reply | Threaded
Open this post in threaded view
|

Re: Specifying Changesets

Dale Henrichs
No facilities for .st file in support ... if distributed repositories for .st existed????? You can use disk-based mcz or filetree repostories to load...

Dale

----- Original Message -----
| From: "Sean P. DeNigris" <[hidden email]>
| To: [hidden email]
| Sent: Monday, July 16, 2012 9:08:20 AM
| Subject: [Metacello] Specifying Changesets
|
| I know it's probably blasphemy j/k, but can I load an .st or .cs file
| via
| metacello specs? While waiting for a fix to be applied to Pharo 1.4,
| I want
| to load a patch in a .st file. I tried:
|
| spec package: 'Issue6386' with: [
| spec
| repository: '/path/to/Issue 6386';
| file: 'Process-psValueAtput.st' ].
| spec group: 'Core' with: #('Issue6386')
|
| But it didn't seem to work, and googling "metacello filein" and
| "metacello
| changeset" didn't yield anything that looked relevant... I guess the
| workaround would be to either package it up or do a preload doit...
|
| --
| View this message in context:
| http://forum.world.st/Specifying-Changesets-tp4640222.html
| Sent from the Metacello mailing list archive at Nabble.com.
|