Skip to content

Instantly share code, notes, and snippets.

@dalehenrich
Created February 23, 2012 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dalehenrich/1892213 to your computer and use it in GitHub Desktop.
Save dalehenrich/1892213 to your computer and use it in GitHub Desktop.
Answer the question: How do I edit specs for a project stored in git?
'From Pharo1.3 of 16 June 2011 [Latest update: #13315] on 23 February 2012 at 2:38:04 am'!
Object subclass: #MetacelloProjectSpecifications
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'MetacelloProjectSpecifications'!
!MetacelloProjectSpecifications methodsFor: 'Sample.source' stamp: 'dkh 2/23/2012 02:34'!
core: spec
<project: 'Sample.source' package: 'Core.pkg'>
spec for: #'common' do: [ spec requires: 'Seaside' with: #('Base' 'Seaside-Email') ]! !
!MetacelloProjectSpecifications methodsFor: 'Sample.source' stamp: 'dkh 2/23/2012 02:34'!
seaside30: spec
<project: 'Sample.source' projectRef: 'Seaside30.ref'>
spec
for: #'common'
do: [
spec
version: '3.0.6.3';
repository: 'github://Seaside/Seaside30/Seaside30.source' ]! !
!MetacelloProjectSpecifications methodsFor: 'Sample.source' stamp: 'dkh 2/23/2012 02:34'!
tests: spec
<project: 'Sample.source' package: 'Tests.pkg'>
spec for: #'common' do: [ spec requires: 'Core' ]! !
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment