On Thursday, June 21, 2012 at 5:46 PM, Kevin Walzer wrote:
> Hello all,
>
>
Hi! and Welcome!
> I had a few questions about MacRuby and its differences from standard
> C-Ruby:
>
> 1. Is MacRuby mature enough to function as a drop-in replacement for
> standard Ruby? Are there significant gaps
On Saturday, June 30, 2012 at 11:11 AM, Jonathan Silverman wrote:
> Hi My Name is Jonathan (JSILVER) Siilverman
>
> What is your status? I would like to help you. Also, I seek
> information on Sandboxing MacRuby apps for Mountain Lion and beyond.
>
> I want to help with MacRuby's success, because
Hey John,
Just took a look, and you've certainly made more progress than myself! (My
branch is/was at https://github.com/jballanc/MacRuby/tree/llvm-3.0). I saw that
you just have a commit on the master branch, though. It would be best if you
created a new branch in your personal MacRuby fork fo
I've added a logging window to an application, and I would like to display any
errors in there too.
So far I have done this:
class NonStderr
def write( error_string )
$log_view.insertText(error_string)
end
end
Then, in applicationDidFinishLaunching(aNotif) I put this:
$stderr = No