Re: [MacRuby-devel] need review for macrubyc man-page

2009-12-17 Thread Ernest N. Prabhakar, Ph.D.
On Dec 17, 2009, at 5:48 PM, Matt Aimonetti wrote: > For those who don't have the latest repo pulled, here is the output of > Laurent's command: Thanks, Matt! Laurent, your English is very good (or at least on part with other man page writers :-). I did have a couple minor suggestions: * tec

Re: [MacRuby-devel] need review for macrubyc man-page

2009-12-17 Thread Rich Morin
General Overly long sentences are harder to comprehend, construct, and punctuate correctly. In general, a warning light should go on after 10 words in a sentence. The light should turn red at 15 or 20 words. The sentence below (35 words!) should set off air raid sirens... A MacRu

[MacRuby-devel] [MacRuby] #513: MacRuby gets confused about inheritance under certain conditions

2009-12-17 Thread MacRuby
#513: MacRuby gets confused about inheritance under certain conditions ---+ Reporter: matt...@… | Owner: lsansone...@… Type: defect | Status: new Prio

[MacRuby-devel] [MacRuby] #512: MacRuby misreports #initialize argument count in error messages

2009-12-17 Thread MacRuby
#512: MacRuby misreports #initialize argument count in error messages ---+ Reporter: matt...@… | Owner: lsansone...@… Type: defect | Status: new Prior

Re: [MacRuby-devel] [MacRuby] #499: Order declaring class hierarchy gets MacRuby confused about instance variables

2009-12-17 Thread MacRuby
#499: Order declaring class hierarchy gets MacRuby confused about instance variables --+- Reporter: p...@…| Owner: lsansone...@… Type: defect| Status: new

Re: [MacRuby-devel] [MacRuby] #499: Order declaring class hierarchy gets MacRuby confused about instance variables

2009-12-17 Thread MacRuby
#499: Order declaring class hierarchy gets MacRuby confused about instance variables --+- Reporter: p...@…| Owner: lsansone...@… Type: defect| Status: new

Re: [MacRuby-devel] need review for macrubyc man-page

2009-12-17 Thread Matt Aimonetti
For those who don't have the latest repo pulled, here is the output of Laurent's command: RUBYC(1) BSD General Commands Manual RUBYC(1) NAME rubyc -- MacRuby Ahead-of-Time Compiler SYNOPSIS rubyc [options...] files... DESCRIPTION rubyc is a command-line interface

[MacRuby-devel] need review for macrubyc man-page

2009-12-17 Thread Laurent Sansonetti
Hi guys, I just committed an early draft of the macrubyc man-page. Would be nice to have some feedback about it. I'm not good at writing English neither at documenting stuff :) Please let me know if you find English mistakes or if there is something you do not understand, or if something

Re: [MacRuby-devel] [MacRuby] #511: GCD crash with indirect method access

2009-12-17 Thread MacRuby
#511: GCD crash with indirect method access ---+ Reporter: joshua.balla...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

Re: [MacRuby-devel] [MacRuby] #511: GCD crash with indirect method access

2009-12-17 Thread MacRuby
#511: GCD crash with indirect method access ---+ Reporter: joshua.balla...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

[MacRuby-devel] dtrace and macruby

2009-12-17 Thread Scott Thompson
I'm trying to learn a bit more about dtrace and I thought that using it to add probes to macruby would be fun. I pulled up the sample dtrace scripts from the Macruby 0.5 b2 source and was working with the script: class World def say(message) puts message end end world = World.new world

Re: [MacRuby-devel] [MacRuby] #511: GCD crash with indirect method access

2009-12-17 Thread MacRuby
#511: GCD crash with indirect method access ---+ Reporter: joshua.balla...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

Re: [MacRuby-devel] [MacRuby] #510: website: How Ruby Programmers Should Learn Cocoa

2009-12-17 Thread MacRuby
#510: website: How Ruby Programmers Should Learn Cocoa +--- Reporter: ernest.prabha...@… | Owner: lsansone...@… Type: task| Status: new Priority:

Re: [MacRuby-devel] [MacRuby] #510: website: How Ruby Programmers Should Learn Cocoa

2009-12-17 Thread MacRuby
#510: website: How Ruby Programmers Should Learn Cocoa +--- Reporter: ernest.prabha...@… | Owner: lsansone...@… Type: task| Status: new Priority:

Re: [MacRuby-devel] [MacRuby] #511: GCD crash with indirect method access

2009-12-17 Thread MacRuby
#511: GCD crash with indirect method access ---+ Reporter: joshua.balla...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

[MacRuby-devel] [MacRuby] #511: GCD crash with indirect method access

2009-12-17 Thread MacRuby
#511: GCD crash with indirect method access ---+ Reporter: joshua.balla...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker

Re: [MacRuby-devel] [MacRuby] #510: website: How Ruby Programmers Should Learn Cocoa

2009-12-17 Thread MacRuby
#510: website: How Ruby Programmers Should Learn Cocoa +--- Reporter: ernest.prabha...@… | Owner: lsansone...@… Type: task| Status: new Priority:

Re: [MacRuby-devel] How to test if you're running MacRuby vs. Ruby?

2009-12-17 Thread Josh Ballanco
def is_macruby? defined? RUBY_ENGINE && RUBY_ENGINE == 'macruby' end Cheers, Josh On Dec 17, 2009, at 12:18 AM, Paul Howson wrote: > Is there a way to test if code is running in MacRuby rather than Ruby? I'm > developing and testing some code using plain old Ruby 1.8.7 in TextMate, then >

[MacRuby-devel] How to test if you're running MacRuby vs. Ruby?

2009-12-17 Thread Paul Howson
Is there a way to test if code is running in MacRuby rather than Ruby? I'm developing and testing some code using plain old Ruby 1.8.7 in TextMate, then integrating it into an Xcode project, so I need to be able to "comment out" some lines which are Cocoa-dependent when testing in plain Ruby. P