Re: [Pharo-users] Who is maintaining Marina?

2015-04-24 Thread Damien Cassou
Yuriy Tymchuk writes: > so far I’ve found 2+ issues: > > 1) 3 tests are failing because "MRRoot class>>#default” returns nil. > 2) "MRRoot>>#initialize” references “name” variable which is not defined (the > question if it should be defined, or it’s a refactoring leftover) > > Also can I config

[Pharo-users] STON distributed control version and long lines (it was Re: Citizen example for manipulating a bibtex file)

2015-04-24 Thread Offray Vladimir Luna Cárdenas
Hi Sven, I would like to retake this conversation. I wasn't able to answer before because I was trying to get minimal functionality for grafoscopio and now that is there, I would like to tackle the issue of long lines in STON, so it can become Distributed Version Control Systems friendly. To

Re: [Pharo-users] Woden-Roassal 3d object rotations

2015-04-24 Thread Alexandre Bergel
Hi Lusa, Well spotted! I worked on the connection Woden <—> Roassal3d. I should be able to hook your rotation into roassal. Can you provide your fix for the rotation please? Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:

Re: [Pharo-users] questionable questionable code critic

2015-04-24 Thread Clément Bera
Code critics relies on simple rules, such as the use of the selector #isKindOf: . It does not detect the second case because the rule is simple, though both are questionable. Best, 2015-04-24 18:24 GMT+02:00 Peter Uhnák : > Why does CodeCritic (QualityAssistant) considers this questionable > >

[Pharo-users] Package for building class diagrams

2015-04-24 Thread Laura Risani
Hi all, Is there any package to build class diagrams? I've seen one somewhere but can't remember where. Any other tool / diagram type you find useful as visual support for the description of a system? Best, Laura

[Pharo-users] questionable questionable code critic

2015-04-24 Thread Peter Uhnák
Why does CodeCritic (QualityAssistant) considers this questionable canBeTargetFor: aController ^ aController isKindOf: DMNodeController and yet this seems fine to him canBeTargetFor: aController ^ aController class = DMNodeController ~~~

Re: [Pharo-users] ViDI error: variable named "aModuleName" in NativeBoost>>#loadModule:

2015-04-24 Thread Rafael Luque
Hi Uko I've just tried with your last changes, but I get the same error: "Error: Could not find accessor for variable named "aModuleName" in NativeBoost>>#loadModule:" This is the stack trace for your information: === NBFFICallout>>loaderForArgNamed: NBFF

[Pharo-users] Who is maintaining Marina?

2015-04-24 Thread Yuriy Tymchuk
HI, so far I’ve found 2+ issues: 1) 3 tests are failing because "MRRoot class>>#default” returns nil. 2) "MRRoot>>#initialize” references “name” variable which is not defined (the question if it should be defined, or it’s a refactoring leftover) Also can I configure CI to build Marina on Pharo

Re: [Pharo-users] [Moose-dev] What's new on Pillar ?

2015-04-24 Thread Alexandre Bergel
This is excellent !! I am really pleased to see effort to improve Pillar. Keep going! Alexandre > Le 24 avr. 2015 à 07:26, Cyril Ferlicot a écrit : > > Hi everyone ! > > I'm currently working on Pillar ! > It's been a little while now so I wanted to share what's new. > > --> First of al

Re: [Pharo-users] Test to fix first

2015-04-24 Thread stepharo
I will have a look :) Thanks for this nice addons Le 24/4/15 17:02, Laura Risani a écrit : Hi all, Made a little extension of method TestSuite>>run in order to print to the Transcript a suggested test to fix first among the failing ones. Logic is based on comment in "Modeling Examples to Test

[Pharo-users] Test to fix first

2015-04-24 Thread Laura Risani
Hi all, Made a little extension of method TestSuite>>run in order to print to the Transcript a suggested test to fix first among the failing ones. Logic is based on comment in "Modeling Examples to Test and Understand Software" ( http://stephane.ducasse.free.fr/Supervised.html ). Run test TestResul

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-24 Thread stepharo
The problem with Pharo-Dev in olden days wasn't that no one used the image, but that there was no good process for pushing required updates to "external" packages, so it was more convenient to just develop in the Core image, and leave the other packages for their maintainers to upda

Re: [Pharo-users] ViDI error: variable named "aModuleName" in NativeBoost>>#loadModule:

2015-04-24 Thread Yuriy Tymchuk
Hi Rafael, now ViDI should work. I haven’t been working on it for a while, but feel free to report more issues, as I’ll get back to it soon. Uko > On 24 Apr 2015, at 09:57, Rafael Luque wrote: > > Thank you! I'm looking forward to hearing from you about the new version. > > 2015-04-24 9:52

Re: [Pharo-users] What's new on Pillar ?

2015-04-24 Thread Ben Coman
On Fri, Apr 24, 2015 at 6:26 PM, Cyril Ferlicot wrote: > into your Pillar file, that will include the content of test.pillar. > I recommend for now to use it at the root of the pillar file and not > inside a paragraph. That still needs some improvement. > > > --> We now have a transformer which a

[Pharo-users] What's new on Pillar ?

2015-04-24 Thread Cyril Ferlicot
Hi everyone ! I'm currently working on Pillar ! It's been a little while now so I wanted to share what's new. --> First of all, with Stephane we created a new project, Cocoon, based on the configuration system of Pillar. And now Pillar uses Cocoon for his configurations. http://smalltalkhub.com/#

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-24 Thread Esteban Lorenzano
> On 24 Apr 2015, at 08:41, stepharo wrote: > > I understand the point of marcus but still it is unclear why certain tools > should be in and not others. > Now I would prefer that we have a process that > >1 := take a miniimage AND load the tools >check that we can unload them (jus

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-24 Thread Henrik Johansen
> On 24 Apr 2015, at 8:41 , stepharo wrote: > > I understand the point of marcus but still it is unclear why certain tools > should be in and not others. > Now I would prefer that we have a process that > >1 := take a miniimage AND load the tools >check that we can unload them (jus

Re: [Pharo-users] ViDI error: variable named "aModuleName" in NativeBoost>>#loadModule:

2015-04-24 Thread Rafael Luque
Thank you! I'm looking forward to hearing from you about the new version. 2015-04-24 9:52 GMT+02:00 Yuriy Tymchuk : > Ok, I found the problem. Some Spec api changed. I stable version will work > at least on Mac quite soon. :) > > Uko > > > > On 23 Apr 2015, at 17:46, Rafael Luque > wrote: > > I'

Re: [Pharo-users] ViDI error: variable named "aModuleName" in NativeBoost>>#loadModule:

2015-04-24 Thread Yuriy Tymchuk
Ok, I found the problem. Some Spec api changed. I stable version will work at least on Mac quite soon. :) Uko > On 23 Apr 2015, at 17:46, Rafael Luque wrote: > > I'd like to use it in a Linux box, but as you told me Linux is not yet > supported, I'm using a Mac OS X Yosemite (version 10.10.2

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-24 Thread Guillermo Polito
El vie., 24 de abr. de 2015 a la(s) 8:31 a. m., stepharo escribió: > It is the configurationBrowser (but an old configuration) > DependencyAnalyser (guillermo I thought that I fixed the text: > deprecation but apparently not) > or in PharoExtras > Hey! It is fixed :) ! (just downloaded it 2 secs