setting up dependencies..

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

setting up dependencies..

sergio_101
if i have a project where i am working with a small team, is there any
way i can automagically let everyone know about the dependencies?

a bundler sort of this?

this would also allow me build up a new image with my project quickly..

thanks!


--
----
peace,
sergio
photographer, journalist, visionary

http://www.ThoseOptimizeGuys.com
http://www.CodingForHire.com
http://www.coffee-black.com
http://www.painlessfrugality.com
http://www.twitter.com/sergio_101
http://www.facebook.com/sergio101

Reply | Threaded
Open this post in threaded view
|

Re: setting up dependencies..

Paul DeBruicker
Metacello?

On Sep 7, 2012, at 6:46 PM, sergio_101 <[hidden email]> wrote:

> if i have a project where i am working with a small team, is there any
> way i can automagically let everyone know about the dependencies?
>
> a bundler sort of this?
>
> this would also allow me build up a new image with my project quickly..
>
> thanks!
>
>
> --
> ----
> peace,
> sergio
> photographer, journalist, visionary
>
> http://www.ThoseOptimizeGuys.com
> http://www.CodingForHire.com
> http://www.coffee-black.com
> http://www.painlessfrugality.com
> http://www.twitter.com/sergio_101
> http://www.facebook.com/sergio101
>

Reply | Threaded
Open this post in threaded view
|

Re: setting up dependencies..

Stéphane Ducasse
and read the available chapter.
in pharo by example web site.

On Sep 8, 2012, at 4:38 AM, Paul DeBruicker wrote:

> Metacello?
>
> On Sep 7, 2012, at 6:46 PM, sergio_101 <[hidden email]> wrote:
>
>> if i have a project where i am working with a small team, is there any
>> way i can automagically let everyone know about the dependencies?
>>
>> a bundler sort of this?
>>
>> this would also allow me build up a new image with my project quickly..
>>
>> thanks!
>>
>>
>> --
>> ----
>> peace,
>> sergio
>> photographer, journalist, visionary
>>
>> http://www.ThoseOptimizeGuys.com
>> http://www.CodingForHire.com
>> http://www.coffee-black.com
>> http://www.painlessfrugality.com
>> http://www.twitter.com/sergio_101
>> http://www.facebook.com/sergio101
>>
>


Reply | Threaded
Open this post in threaded view
|

Re: setting up dependencies..

sergio_101
Reply | Threaded
Open this post in threaded view
|

Re: setting up dependencies..

hernanmd
In reply to this post by sergio_101
Reading Metacello methods to understand dependencies requires you and your team understand the API.
You may use the package dependencies: http://permalink.gmane.org/gmane.comp.lang.smalltalk.pharo.devel/19656

( PDPackageAnalyzer onPackagesNamed: #(
'BioEntrez' 'BioEntrezTests'
'BioBlast' 'BioBlastTests'
'BioFormatters' 'BioFormatterTests'
'BioParsers' 'BioParsersTests'
'BioTools' 'BioToolsTests'
'BioSupport'
'BioWrappers'  'BioWrapperTests'
'BioNCBI' 'BioNCBITests'
'BioSupport'
'BioPharo'
'BioClassifier' 'BioClassifierTests'
'BioArlequin'
'BioToolsSamples' ) )
save: 'BioSmalltalk.dot'

and load the .dot in GraphViz.

2012/9/8 sergio_101 <[hidden email]>
if i have a project where i am working with a small team, is there any
way i can automagically let everyone know about the dependencies?

a bundler sort of this?

this would also allow me build up a new image with my project quickly..

thanks!


--
----
peace,
sergio
photographer, journalist, visionary

http://www.ThoseOptimizeGuys.com
http://www.CodingForHire.com
http://www.coffee-black.com
http://www.painlessfrugality.com
http://www.twitter.com/sergio_101
http://www.facebook.com/sergio101