Tagged Questions
Macruby is an implementation of the Ruby 1.9 programming language in ObjC for Mac OSX
17
votes
4answers
2k views
Can you use MacRuby to develop applications for the Mac App Store?
I have some basic familiarity with Objective-C, but prefer Ruby, so I'm thinking of playing around with MacRuby. Is it possible to use MacRuby to develop applications for the Mac App Store, or do I ...
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??
12
votes
2answers
3k views
Using MacRuby for developing iPhone apps
I'm looking to build an iPhone app, but I don't have enough time to learn Objective-C. I already know Ruby and discovered MacRuby. Is it possible to build an iPhone app using MacRuby alone, without ...
11
votes
1answer
218 views
Use MacRuby Debugger in Xcode?
Is there anyway to use the MacRuby debugger macrubyd when developing a MacRuby app within Xcode?
As far as I can tell you can't do so even from the terminal. I've thought of kludgy work around but I ...
10
votes
6answers
3k views
Using Gems with MacRuby
How do you use gems from a MacRuby .5 application on Snow Leopard? Do I need to specify the gem path? If so, how do I do this?
Best scenario is to package the gems inside the application so the user ...
7
votes
2answers
130 views
License of MacRuby
I recently started using MacRuby to make some easy app, but I noticed that the MacRuby is implemented from Ruby 1.9, and the Ruby license is under GPL lilcense, I think the MacRuby is GPL too.
And ...
7
votes
2answers
490 views
Ruby gui for Desktop apps
After long hours googling around, I'm wondering if there really exists a maintained gui based on Ruby.
Here are the one I checked:
Shoes: I'm not feeling like I could create rock solid platform ...
7
votes
6answers
640 views
Could MacRuby / HotCocoa supplant the need to know Objective-C?
I just discovered MacRuby / HotCocoa and really like the sound of what they're doing.
I had essentially discounted the prospect of making Cocoa GUI applications myself because I have an aversion to ...
6
votes
5answers
880 views
Interface Builder not Seeing Outlets with MacRuby
I am trying to get a basic hello world application going using XCode and Interface Builder. However, in Interface Builder I can't see my outlets to wire things up with. I go to the connections tab of ...
4
votes
4answers
193 views
Escaping Line-Returns/End-of-Line in ERB templates
I need to be able to format unprinted logic lines in ERB without affecting the eventual text output of the template. At this point, I don't think that ERB supports such escaping.
This is my first ...
4
votes
1answer
240 views
Simple persistence framework compatible with macruby?
I'm running into problems using macruby with ActiveRecord (w/ sqlite3) or Sequel. Any other suggestions? I need a simple lightweight persistence mechanism to embed within my application that can ...
4
votes
1answer
314 views
MacRuby - ActiveRecord for storage?
Is it possible to use ActiveRecord for storage and query in a MacRuby Cocoa application?
If it is, are there any resources that shows how?
Are there any reason why ActiveRecord should not be used?
4
votes
3answers
500 views
Good resources to learn MacRuby
I do not know Ruby and I am interested to learn MacRuby.
What would you recommend as your best resource (books, blogs, sites) to learn MacRuby?
Found:http://www.macruby.org/
More info her from ...
4
votes
2answers
612 views
MacRuby+IronRuby or JRuby for Desktop Applications?
For Web Applications I use Ruby on Rails. And now it's time to see if I can code Desktop Applications with Ruby.
So I wonder which one I should choose.
The way I see it is MacRuby+IronRuby vs JRuby.
...
4
votes
5answers
405 views
What languages besides Objective-C will generate application code that works on an iPad?
I would like to write an app for the iPad but I can't stand Objective-C.
Is there a language generator that would spit out Objective-C but let me write my iPad application in another language?
I've ...
4
votes
1answer
203 views
Can gems be used by ruby code compiled with macrubyc
MacRuby 0.5 includes a ruby compiler built on LLVM called macrubyc.
Does anyone know if it would be possible to dynamically load gems from compiled code? Or compile the gems and link them in? Is ...
4
votes
4answers
3k views
Uninstall MacRuby
Does anyone know how to uninstall MacRuby? I was using RubyCocoa then decided to try out MacRuby, after installing MacRuby, RubyCocoa has stopped working. So I would like to remove MacRuby, but I ...
3
votes
1answer
41 views
Trouble with drag events in MacRuby app
It's been a while since I've done any Cocoa development, and I'm trying to get this very quick and dirty (and simple) app wrapped up. I decided to use MacRuby because it was a good excuse to learn it, ...
3
votes
2answers
64 views
Do I need to create a local service for this application design?
I have a situation where I'm using MacRuby for a thin local gui, and most of the work is done in a Parser object that I've created. I will eventually also have an IronRuby thin client, that will also ...
3
votes
1answer
77 views
Why are my Macruby pointers not surviving being passed as void pointers?
I've implemented the selector alertDidEnd:returnCode:contextInfo:. The last parameter, contextInfo, is a void pointer. Before calling the method I put the pointer together as follows.
# in ...
3
votes
3answers
754 views
Can't submit Mac app via xcode4 - Invalid Signature
I keep getting this error:
Invalid Signature - This error occurs when you have signed your app's installer incorrectly. There are two certs required for this process: the "3rd Party Mac Developer ...
3
votes
3answers
525 views
How do I get Textmate to use MacRuby?
So, how do I get Textmate to use MacRuby, a branch of 1.9.2, instead of the default Ruby in OSX, 1.8.7?
3
votes
4answers
305 views
How can a nested class access a method in the outer class in Ruby?
def class A
def a
raise "hi" #can't be reached
end
class B
def b
a() #doesn't find method a.
end
end
end
I want to invoke a from b and raise the exception. How can I?
3
votes
1answer
573 views
MacRuby + Interface Builder: How to display, then close, then display a window again
I'm a complete n00b with MacRuby and Cocoa, so keep that in mind when answering - I need lots of details and explanation. :)
I've set up a simple project that has 2 windows in it, both of which are ...
3
votes
1answer
365 views
How to create an image from canvas data?
In my application I am trying to save an arbitrary part of a rendered HTML canvas to an image file. In my Javascript I call ctx.getImageData(x, y, w, h) and pass the resulting object to my macruby ...
3
votes
1answer
178 views
How do you call C functions from MacRuby?
I'd like to try to use MacRuby with CoreAudio on OS X, but most of these APIs are C functions. Do I have to use Ruby DL, or does MacRuby offer another way?
3
votes
2answers
290 views
Using MacRuby to Test iPhone Application?
I have an existing iPhone app, written in Objective-C, that I'd like to add some automated tests to. I've read this article about testing with MacRuby, which sounds great but it's aimed at testing ...
3
votes
3answers
205 views
PyObjC / Ruby bridge. Is it worthwhile?
Years ago wanting to write Mac software and having loads of experience with Java WebObjects I tried the java bridge but decided to bite the bullet and learn Objective-C (fortunately since I would have ...
3
votes
2answers
146 views
Error when using --static option with macrubyc
I want to create a binary executable for a relatively simple script that would not require people to install macruby or HotCocoa. The script is here. I've understood that I want to use the --static ...
3
votes
4answers
2k views
How to install Nokogiri as a Macruby gem?
The latest MacRuby release notes (v0.6) state that the authors have managed to get this release working with the SQLite and Nokogiri gems. However when I run sudo macgem install nokogiri I get the ...
3
votes
2answers
357 views
MacRuby: objective-c runtime is same as ruby runtime
I have no formal education in computer science but I have been programming in Java, Ruby, jQuery for a long time.
I was checking out macruby project. I keep running into statements which are similar ...
2
votes
1answer
53 views
What's the rule to convert CocoaAPI to MacRuby API
- (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows: (BOOL)flag
{
[self showWindow:self];
return YES;
}
how to convert this method to MacRuby ?
I tried
...
2
votes
1answer
48 views
NSView with NSImage inside of it — how come NSImage doesn't move with the view which is its parent?
I am writing a simple MacRuby app. I have an NSView that draws an image inside of itself when its drawRect() is called.
Inside that NSView subclass my drawRect() has (among some other lines of code)
...
2
votes
1answer
22 views
Can gems be assigned different interpreters?
I fee like I've seen that this was possible in some documentation before, but now I'm not able to find it. Is it possible to have a gemfile like:
gem "somegem", :interpreter => :MRI
gem ...
2
votes
2answers
94 views
No input to NSTextField when running macruby
i have a simple macruby application and i want to get some user-input via a NSTextField, but when i run the application with '''macruby test.rb''' all the input on the focused text-field goes into the ...
2
votes
1answer
271 views
How to get interface builder to recognise receiving action method in delegate
NEWBIE QUESTION ALERT!
I have a brand new macruby application in Xcode 4.1.
In my application delegate I add this method:
def receiveSomeEventFromXib(sender)
puts "receiveSomeEventFromXib"
end
...
2
votes
3answers
164 views
High performance calculations with Ruby?
My colleagues normally use C or Fortran for high performance calculations (math on large arrays of data). I wonder if there is any possibility for Ruby code to be compiled/converted and come close to ...
2
votes
1answer
64 views
How to set the defaults for an NSFontPanel?
I'm setting up the preferences window for my cool app, which displays some text. In preferences I've set up a button that opens an NSFontPanel. My app stores the user's preferred text color and font, ...
2
votes
1answer
97 views
Quotation Mark in ruby regular expression misinterpreted as start of string
I have a macruby project in xcode, in which I want to replace all the left and right quotes in a string with ~@@~@@~" and "~@@~@@~, respectively. I tested the following code in rubular.com, and it ...
2
votes
1answer
128 views
What is the easyest way to use gems in a macruby application, in XCode?
I need to include a rubygem in a simple macruby application i am creating in XCode. Using require 'rubygems' does not give an error, but the next line to require any other gems has a load error. I ...
2
votes
5answers
384 views
Weird EXC_BAD_ACCESS in a trivial PDFKit program
I have written this trivial action method associated to a textfield.
Every time I enter text into a textfield a search in a PDF is performed and PDFView automatically scroll to selection:
- ...
2
votes
1answer
347 views
MacRuby 0.10 HotCocoa unsupported file format which is not the architecture being linked (i386)
I've installed MacRuby (via rvm):
$ ruby -v
MacRuby 0.10 (ruby 1.9.2) [universal-darwin10.0, x86_64]
And LLVM (via homebrew):
$ llvmc --version
Low Level Virtual Machine (http://llvm.org/):
llvm ...
2
votes
2answers
170 views
Ruby: Breaking from an Inline Block
Update
Ignore the following. It turned out to be a bug restricted to Macruby 0.10 and probably specific to my install. I'll leave the post in case anyone else hits the problem.
I seemed to ...
2
votes
2answers
87 views
Ruby Testing: Testing for the Absence of a Method
In rspec and similar testing frameworks, how does one test for the absence of a method?
I've just started fiddling with rspec and bacon (a simplified version of rspec.) I wanted to define test that ...
2
votes
1answer
205 views
Ruby: How to handle a Failed or Invalid Initialization
What is the ruby best practice for handling a situation in which an object should fail to initialize owing to being passed invalid initialize arguments?
I realize that in ruby, duck typing means that ...
2
votes
1answer
159 views
Using macruby, how do I set up a completion block for a Core Animation transaction?
I'm using MacRuby to do Core Animation programming. I've tried all I can think of and searched all over (and maybe it can't be done in 'pure' macruby) but I can't figure out how to specify a block of ...
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
2answers
367 views
How to get progress of interactive program from ruby?
I'm trying to create a macruby app that calls a rsync script with the --progress argument, but the way rsync displays its progress is by changing the same line, not adding new lines to its output, so ...
2
votes
1answer
258 views
MacRuby: load cocoa bundle
I created a custom cocoa bundle. But when i try to load the bundle into MacRuby project,I get the following err
dyld: Library not loaded: audio_streamer.bundle Referenced from: ...
2
votes
2answers
391 views
Using ASIHTTPRequest to download a file with Cocoa/MacRuby
I'm still trying to get a handle on Cocoa (both in Obj-C and MacRuby), and I'd really appreciate seeing how to download a file with ASIHTTPRequest (or without it) and MacRuby. Ideally, I'd like to be ...