Tagged Questions
The ruby-cocoa tag has no wiki summary.
13
votes
3answers
2k views
Should I learn MacRuby or RubyCocoa
I am wanting to learn mac development with ruby but I'm not sure which one to go at. RubyCocoa has been around longer but I think MacRuby will beat it out in the long run..
Any suggestions??
7
votes
5answers
2k views
PyObjc vs RubyCocoa for Mac development: Which is more mature?
I've been wanting to have a play with either Ruby or Python while at the same time I've been wanting to do a bit of Cocoa programming.
So I thought the best way to achieve both these goals is to ...
3
votes
2answers
784 views
Using RSpec for iPhone Controllers
I'm finally getting the hang of RSpec after spending a couple of hours over the weekend. Now I'm stuck trying to figure out how to assert that parameters are indeed passed into the controller. I'm ...
2
votes
1answer
169 views
Using Ruby on Mac OS X, how to programmatically click on the screen — and mouse move, mouse down, and mouse up?
What are the best way(s) to do it? Can ffi, RubyCocoa, or MacRuby do it?
It seems like CGEventCreateMouseEvent or CGPostMouseEvent (deprecated) can be used.
Please give a working example. ...
2
votes
4answers
538 views
Build same RubyCocoa application version for Leopard and Snow Leopard
I have RubyCocoa 0.13.2 based application. It works on 10.5.8 and earlier versions. When i try to run it on 10.6 it crashes on infinite loop. 10.6 has 0.13.2 built in, but it's not same binary as for ...
2
votes
9answers
886 views
Which is easier for beginners: RubyCocoa or ObjC/Cocoa
I've heard a few debates in the past over which is more mature: RubyCocoa or Obj-C/Cocoa... but I have felt that the answers jet right over the "newbie" that would truly appreciate an answer.
So the ...
1
vote
4answers
478 views
Segmentation fault on Lion creating NSData from RubyCocoa with any bytes > 127
The following RubyCocoa is fine on Max OS X 10.6, but segfaults on 10.7
require 'osx/cocoa'
include OSX
bytes = [128].pack('i1')
NSData.alloc.initWithBytes_length(bytes, bytes.length)
In all cases ...
1
vote
3answers
2k views
Ruby threads cannot be used in RubyCocoa without patches to the Ruby interpreter
I found this error in Ruby console while I am testing a Rails application.
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib /mongrel.rb:285:
in ...
1
vote
2answers
405 views
mysql gem for snow leopard
I had trouble with the gem at first but got it to work when I installed the 64-bit MySQL and reinsatlled the gem with arch flags.
So it work in rails. The error I used to get was
uninitialized ...
1
vote
1answer
385 views
Error drawing text on NSImage in PyObjC
I'm trying to overlay an image with some text using PyObjC, while striving to answer my question, "Annotate images using tools built into OS X". By referencing CocoaMagic, a RubyObjC replacement for ...
1
vote
8answers
621 views
RubyCocoa, what's the point?
I was wondering what's the point of using Ruby (or even Python) in Cocoa application development other that not learning Objective-C (which is pretty simple language and will not take to more than few ...
0
votes
1answer
13 views
How to read a global selection using MacRuby?
How can I read a global UI selection within MacRuby? For instance, of selected text in Preview.
Having no experience in Ruby and Cocoa, I've decided to take a plunge and to write a small dictionary ...
0
votes
0answers
25 views
How to make two ways binding in RubyCocoa
I want to create a two ways binding between a simple NSTextField and a my program class property "@aString". I have made a lot of tries without success. Here is the one which seems the best to me:
...
0
votes
0answers
55 views
Ruby RSS::Parser issue with flickr: wrong constant name Date.Taken (NameError)
I'm trying to implement the code from Apple's tutorial on Building a RubyCocoa Application. Though the tutorial is a little out of date and for instance I had to add require_framework 'ImageKit' to ...
0
votes
1answer
249 views
RubyCocoa on PowerPC G5 processor (Leopard 10.5.7)
Does anybody know which version of RubyCocoa runs on this processor (if at all)?
0
votes
2answers
889 views
rubycocoa 0.13.2, snow leopard & ruby 1.8.7
I have a rubyCocoa project, that was written for ruby 1.8.6, RubyCocoa version 0.13.2. The class tree is built from a xcdatamodel. I'm trying to migrate it to Snow Leopard. When trying to run, the ...
0
votes
1answer
175 views
Asynchronous methods in RubyCocoa
I understand that it isn't possible/sensible to use threads in RubyCocoa. However it is possible to use asynchronous Cocoa methods to avoid blocking user interface events.
I've successfully used a ...
-1
votes
1answer
353 views
autorelease pool causes crash in RubyCocoa application
I'm having crash in my application, which says
trying to pop an unknown autorelease pool:
10/19/09 11:40:11 AM MyApp[89480] *** attempt to pop an unknown
autorelease pool (0x11bc800)
How to trace it ...