Re: [MacRuby-devel] TwUI & MacRuby issue

2011-12-23 Thread isaac kearse
by lib/views/ExampleTabBar.rb(line:10) > > To determine the cause, I need more time. > > > Thanks, > > 2011/12/24 isaac kearse : >> I should have also mentioned that I can reproduce this crash on >> MacRuby 0.10, 0.11 and the latest nightly build. >> >> On Sat, Dec

Re: [MacRuby-devel] TwUI & MacRuby issue

2011-12-23 Thread isaac kearse
I should have also mentioned that I can reproduce this crash on MacRuby 0.10, 0.11 and the latest nightly build. On Sat, Dec 24, 2011 at 11:19 AM, isaac kearse wrote: > TwUI is a hardware accelerated UI framework for Mac, inspired by > UIKit: https://github.com/twitter/twui > > I&#

[MacRuby-devel] TwUI & MacRuby issue

2011-12-23 Thread isaac kearse
TwUI is a hardware accelerated UI framework for Mac, inspired by UIKit: https://github.com/twitter/twui I'd like to try using it in my MacRuby apps, so I thought to start with I would port the the TwUI Example Project to MacRuby. TwUI Example Project: https://github.com/twitter/twui/tree/master/E

Re: [MacRuby-devel] HotCocoa futures

2011-12-23 Thread isaac kearse
project Cheers, Isaac On Sat, Dec 24, 2011 at 9:25 AM, Rich Morin wrote: > At 7:29 PM +0100 12/23/11, Jordan K. Hubbard wrote: >> On Dec 23, 2011, at 2:47 AM, isaac kearse wrote: >> >> Are you aware that HotCocoa is being actively developed again? >> >>

Re: [MacRuby-devel] A Future for MacRuby

2011-12-22 Thread isaac kearse
Hi Jordan, Are you aware that HotCocoa is being actively developed again? https://github.com/HotCocoa/hotcocoa/blob/master/History.markdown There is a good overview of contributions over time here: https://github.com/HotCocoa/hotcocoa/graphs/impact Cheers, Isaac On Wed, Dec 21, 2011 at 8:56 PM,

Re: [MacRuby-devel] How do people deal with macgem overwriting MRI gem binaries?

2011-06-30 Thread isaac kearse
comes > first in your $PATH. > > Personally, I use rvm to solve this problem. However, it comes with its own > set of trade-offs. > > Mark Rada > mr...@marketcircle.com > > > > On 2011-06-30, at 10:07 PM, isaac kearse wrote: > >> At the moment macgem

Re: [MacRuby-devel] How do people deal with macgem overwriting MRI gem binaries?

2011-06-30 Thread isaac kearse
c-, then. > > You may even want to put that in your .gemrc for the install and > update commands. > > On Fri, Jul 1, 2011 at 04:07, isaac kearse wrote: >> At the moment macgem will prompt the user with this warning when >> trying to install nokogiri (if you ha

[MacRuby-devel] How do people deal with macgem overwriting MRI gem binaries?

2011-06-30 Thread isaac kearse
At the moment macgem will prompt the user with this warning when trying to install nokogiri (if you have already installed it with MRI): WARNING: You are installing a new version of /usr/bin/nokogiri. This file already exists with a different shebang, possibly from a different ruby implementation

Re: [MacRuby-devel] move to llvm 2.8

2010-12-08 Thread isaac kearse
Thanks to Eloy for catching a typo in that last commit, updated here: https://github.com/isaac/MacRuby/commit/10ae5cec5bd577c8c472995c9a12ff9b1773e0f8 Let me know if I should open a ticket when making small documentation changes like this. Cheers, Isaac On Wed, Dec 8, 2010 at 7:58 PM, isaac

Re: [MacRuby-devel] move to llvm 2.8

2010-12-07 Thread isaac kearse
Now might be a good time to include instructions on updating existing LLVM checkouts, as discussed on IRC: https://github.com/isaac/MacRuby/commit/a8f3b68688c03f2c314debda51d7ebfbbcae9f46 Cheers, Isaac On Wed, Dec 8, 2010 at 1:30 PM, Laurent Sansonetti wrote: > Hi, > A quick note to mention tha

Re: [MacRuby-devel] status and prospects of HotCocoa?

2010-06-10 Thread isaac kearse
I have a few more articles here also: http://isaac.kearse.co.nz/ Rich Kilmer obviously doesn't have much time for HotCocoa right now, but he has done some great work to get it this far and it would be cool if he could chime in with a few words about his vision for the project. I also vaguely reme

[MacRuby-devel] Compiling HotCocoa

2010-02-06 Thread isaac kearse
I was trying to speed up a little HotCocoa app I just released ( http://isaac.kearse.co.nz/2010/02/07/safarirss/ ) and when I tried to compile HotCocoa I ran into a strange issue with one particular file: http://github.com/richkilmer/hotcocoa/blob/master/lib/hotcocoa/mappings.rb All the files in

Re: [MacRuby-devel] Packaging a HotCocoa application without the standard library

2010-02-01 Thread isaac kearse
aac. HotCocoa is primarily maintained by Rich Kilmer > and I am sure he would appreciate patches/suggestions and help. > Your stopwatch example was great, thanks again. > > - Matt > > On Sun, Jan 31, 2010 at 12:55 PM, isaac kearse wrote: > >> Hey Guys, >> >> Ju

[MacRuby-devel] Packaging a HotCocoa application without the standard library

2010-01-31 Thread isaac kearse
Hey Guys, Just wrote a few blog posts about a HotCocoa app I just released, and how I packaged it up: http://isaac.kearse.co.nz/2010/01/31/stopwatch/ http://isaac.kearse.co.nz/2010/02/01/packaging-hotcocoa/ Interested in getting feedback about the way I embedded MacRuby & HotCocoa in this app. (

Re: [MacRuby-devel] Looking for feedback on a draft blog post: Optimising Table Views With MacRuby

2010-01-13 Thread isaac kearse
Thanks for your help guys, here is the article: http://isaac.kearse.co.nz/2010/01/10/async-table-views-with-macruby/ Cheers, Isaac On Mon, Jan 11, 2010 at 7:12 PM, isaac kearse wrote: > Thanks Jordan, > > I wanted to keep this post fairly short and narrow just for my own sanity. >

Re: [MacRuby-devel] Cocoa Binding to NSArrayController

2010-01-11 Thread isaac kearse
Looks like you're bypassing the to_i conversion of @number by calling instance_variable_set directly, but I'd guess that the problem is somewhere else in the app. Any chance you could put the whole thing up on github? Cheers, Isaac On Tue, Jan 12, 2010 at 6:41 AM, steve ross wrote: > I wrote a

Re: [MacRuby-devel] Looking for feedback on a draft blog post: Optimising Table Views With MacRuby

2010-01-10 Thread isaac kearse
Thanks Jordan, I wanted to keep this post fairly short and narrow just for my own sanity. But maybe I'll do some more articles on the async theme and collect them together for a tutorial/documentation later. What if the next one solved this same issue but with GCD instead of an async NSURLConnec

Re: [MacRuby-devel] Looking for feedback on a draft blog post: Optimising Table Views With MacRuby

2010-01-10 Thread isaac kearse
Thanks Chuck, Syntax errors corrected. You're probably right about the title. This post started with a larger scope but I soon realised if I didn't cut it short I'd never finish it :) Cheers, Isaac On Mon, Jan 11, 2010 at 11:53 AM, Chuck Remes wrote: > > On Jan 10, 20

[MacRuby-devel] Looking for feedback on a draft blog post: Optimising Table Views With MacRuby

2010-01-10 Thread isaac kearse
Hey Guys, http://isaac.kearse.co.nz/draft/ Looking for any and all feedback: technical, writing, whatever... Cheers, Isaac ___ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

[MacRuby-devel] BirdWatch: Twitter search client written in MacRuby

2010-01-03 Thread isaac kearse
Hey Everyone, I just released a MacRuby app that has been sitting on my hard drive for too long. You can read about it here: http://isaac.kearse.co.nz/2010/01/01/birdwatch/ and get the source here: http://github.com/isaac/BirdWatch Let me know what you think. Cheers, Isaac __

Re: [MacRuby-devel] Mixing Objective-C and Ruby classes

2009-05-20 Thread isaac kearse
> > would need a slightly different approach. It shouldn't be too bad, > > since hotcocoa helps you layout your code in a sensible way. Make > > sure the above works first, then go from there. > > > > On Wed, May 20, 2009 at 2:53 AM, isaac kearse > wr

Re: [MacRuby-devel] Mixing Objective-C and Ruby classes

2009-05-20 Thread isaac kearse
, isaac kearse wrote: > Yeah I think you're right. I was calling it inside a hotcocoa app but not > in the application context. I'll try it out tonight and let you know how it > goes. > Thanks a lot for walking me through this. > > On Wed, May 20, 2009 at 12:47 PM, Bri

Re: [MacRuby-devel] Mixing Objective-C and Ruby classes

2009-05-19 Thread isaac kearse
rtcut to controlKey+optionKey, so > you'll need to press Control+Option+Space. > > > On Tue, May 19, 2009 at 4:33 PM, isaac kearse > wrote: > > Hey thanks Brian that worked! > > I tried compiling with the Carbon Framework but I didn't think to try it > >

Re: [MacRuby-devel] Mixing Objective-C and Ruby classes

2009-05-19 Thread isaac kearse
Cheers, Isaac On Wed, May 20, 2009 at 10:59 AM, Brian Chapados wrote: > Those symbols are defined in the Carbon framework. Try compiling with: > > cc shortcut.m -o shortcut.bundle -g -framework Foundation -framework > Carbon -dynamiclib -fobjc-gc -arch i386 -arch x86_64 > >

Re: [MacRuby-devel] Mixing Objective-C and Ruby classes

2009-05-19 Thread isaac kearse
Hi Guys, I am writing a hotcocoa app, and I want to register a global keyboard shortcut so that I can perform an action in my app from any application. AFAIK you need to go down to Carbon to do this as documented here: http://cocoasamurai.blogspot.com/2009/03/global-keyboard-shortcuts-with-carbon.

Re: [MacRuby-devel] [hotcocoa] MVC helper?

2009-04-20 Thread isaac kearse
I forked the repo and fixed applied the fix here: http://github.com/isaac/phare/commit/b6d78dd4d60b61ea5d7532fc6e43f7e72fdfa894 On Tue, Apr 21, 2009 at 7:25 AM, Matt Aimonetti wrote: > I made some modifications and I probably broke some stuff. Sorry about > that. Rich and I worked on a new super