MacRuby is an implementation of the Ruby 1.9 programming language in ObjC for Mac OSX
0
votes
0answers
19 views
Why does requiring 'watir-webdriver' in my macruby application in xcode cause this error?
I have installed watir-webdriver via macgem in root and in user, I have required rubygems and included /Library/Frameworks recursively in my framework search path in build settings for this project.
...
0
votes
1answer
30 views
Macruby get an object to notify AppDelegate when its completed a task
I am super new to Macruby and I'm trying to write a small app that sends post data to an api and then displays the response in text field.
I have gotten as far as collecting, sending the data and ...
0
votes
0answers
32 views
How to implement a NSTabView delegate with MacRuby?
I try to set an NSTabView delegate using MacRuby with XCode, but I can't figure how to write the delegate. I use:
def intialize
@tab_changed.delegate = self
end
def ...
0
votes
0answers
16 views
MacRuby:garbage pointer stored into reachable memory
I'm relatively new to macruby and cocoa and have been humming along just fine on a little app I'm writing until I started getting this nasty exception:
*ProgramName*(2767,0x7fff769af960) malloc: ...
2
votes
3answers
132 views
Change Ruby program into simple Desktop Mac App
I have a program that reads the data in a file, changes certain elements, and creates a new file. The code looks like this:
lines = IO.readlines('single_before_CAP.txt').map do |line|
a = ...
0
votes
1answer
41 views
NoMethodError with MacRuby call to objective-c method
I'm trying to call and objective-c method from a MacRuby application and it works fine as long as I only have one variable in the method. If I add a second variable I get a NoMethodError.
I have a ...
0
votes
2answers
68 views
MacRuby Accessing/Updating Text Fields
I'm fairly new to Ruby/MacRuby. I followed the stopwatch example on the MacRuby website and i used that example to try and make a simple app which takes 6 small text fields and then displays the input ...
0
votes
1answer
126 views
How do I execute a command, feed data to its stdin, and read from its stdout in MacRuby?
I'm attempting to execute a command, feed data to its stdin, and read from its stdout. I've tried using Ruby's Open3#popen3 as well as NSTask, exposed via MacRuby. The source for the program I'm ...
0
votes
1answer
30 views
hotcocoa button background colour
I'm working on project which based on macruby and hotcocoa framework. I don't know objective c. In my project I would like to change color of button (NSButton). Do you know how to achieve this using ...
0
votes
1answer
103 views
Calling Ruby classes/scripts from Objective C - is MacRuby an overkill?
I want to call certain Ruby libraries (natural language processing) from Objective C ( it's a Mac OSX app). I would like however to keep the most of the programming in Objective C, using Ruby only to ...
0
votes
1answer
59 views
Persist the content and order of an array controller in cocoa
I have a Mac OS application that uses core data to persist its objects to disk, backed by sqlite.
I have a tableView where all the NSManagedObject subclasses can be inspected. This is bound to an ...
1
vote
1answer
90 views
macruby AVPlayer addBoundaryTimeObserverForTimes
I have a strange problem with adding observer for boundary time using AVFoundation AVPlayer.
player = AVPlayer.playerWithURL(NSURL.URLWithString(someurl))
player.play()
...
0
votes
1answer
54 views
How to compile a simple ruby script with macruby?
I'm trying to compile a simple "Hello World" ruby script to a Mac OS binary using macrubyc.
This is the command I'm using:
macrubyc -C hello_world.rb
This is the output of the file command:
file ...
0
votes
0answers
46 views
Macruby can not load dispatch gem in application
I want to use Dispatch gem in MacRuby to use concurrency in my app. But I got into a tricky problem with this. I tried to install Dispatch gem via 'gem install dispatch', via 'macgem install ...
0
votes
1answer
30 views
Should I try to implement MVVM pattern in MacRuby, or there is another pattern which suits better?
I am creating a small GUI application with MacRuby, and since I am from .NET world (WPF) I want to use MVVM pattern in my app. But I am not sure if it is OK ti walk MVVM way with Ruby, because ...
1
vote
1answer
24 views
How do you construct “whose name is X” style statements in macruby/scriptingbridge?
In applescript:
set allItems to every item whose name is "foo"
In rb-appscript:
all_items = items[its.name.eq "Foo"]
Is there a way to construct a similar search/predicate/what-have-you in ...
0
votes
2answers
54 views
Uninitialized constant NSJSONSerialization
How can I get NSJSONSerialization to be recognized in macruby?
framework 'foundation'
puts NSXMLDocument
#=> NSXMLDocument
puts NSJSONSerialization
#=> ...
3
votes
2answers
168 views
Calling a different superclass init method from custom initializer in MacRuby
In Objective C, a custom init method must call the superclass's designated initializer. Consider the following custom init method for a sublcass of NSView:
- (void)initWithFrame:(CGRect)aFrame ...
0
votes
1answer
42 views
MacRuby pointers and Obj-C function returning a value by reference
I am trying to implement the following method of NSAttributedString in Macruby:
(id)attribute:(NSString *)attributeName atIndex:(NSUInteger)index effectiveRange:(NSRangePointer)aRange
As by ...
0
votes
0answers
211 views
MacRuby (StopWatch tutorial) and Xcode: how to play with your app in Xcode
super new to MacRuby and Xcode. I just went through the StopWatch tutorial (https://github.com/MacRuby/MacRuby/wiki/Creating-a-simple-application) and all went well. Was able to deploy it ...
1
vote
1answer
110 views
Runtime error trying to use CoreGraphics with MacRuby
I'm trying to build a MacRuby 0.12 project on OSX 10.8. The problem appears to be that this line:
@context = NSGraphicsContext.currentContext.graphicsPort
throws this error:
unrecognized runtime ...
0
votes
1answer
41 views
Is it possible to use MacRuby on XCode 3
Is it possible to run MacRuby with XCode 3?
It is not possible for me to upgrade to XCode 4.2 because I am running Snow Leopard and have a machine that will not upgrade to Mountain Lion and Apple ...
0
votes
0answers
52 views
MacRuby release app missing libmacruby.dylib
Using XCode 4.5.2 and MacRuby 0.12, my app works fine on my computer but the release version won't work on others computers :
Dyld Error Message:
Library not loaded: ...
0
votes
1answer
49 views
MacRuby: open popUpContextMenu
I am trying to open a context menu on the mouseDown event of my NSView but the menu never appears. I think the could is good but I must be missing something.
Here i my view:
class MyCustomView < ...
0
votes
1answer
82 views
EXC_BAD_ACCESS error when looping
I am trying to write a simple batch Excel extractor:
I have an array of file names that I created a .each loop for. In the loop (under Exception handling) I open that file, add the name of the file ...
0
votes
1answer
58 views
Macruby: plug an attr_accessor to a controller
I am starting macruby and I am following this tutorial: http://blog.phusion.nl/2010/03/12/creating-our-very-first-mac-application-with-ruby-how-exciting/
I am stuck at the "Hooking our ...
2
votes
0answers
70 views
MacRuby gem signature is invalide
I'm using Xcode 4.5.2 and MacRuby 0.12.
I need to use the Spreadsheet gem, but I keep having a "signature" issue when I try to execute my program :
...
4
votes
1answer
115 views
FSEvents in MacRuby: wrong callback is executed
I'm working on GUI app in MacRuby and I need to use FSEvents. I'm registering a couple of streams for different directories. Changes in any of those directories result in running a callback, but ...
0
votes
0answers
108 views
MacRuby not accessing return value from Scripting Bridge command
I'm using MacRuby's Scripting Bridge to interface with an OS X application (Acrobat Pro).
When I run the doScript command, in AppleScript, I get a return value, but when I do the same thing from ...
1
vote
1answer
109 views
Closing windows with MacRuby and the Scripting Bridge
I'm trying to write a quick script that will close all but the current window for the terminal application. This script uses MacRuby and the Scripting Bridge. Heres' what I have so far:
...
0
votes
0answers
53 views
Accessing an external file from MacRuby
I have done several small scripting/automation projects before but this is my first time using MacRuby and I couldn't find out at all why my project is not working.
This task would have been easy to ...
0
votes
1answer
67 views
Accessing an outlet in Interface Builder in Document-Based Application
With MacRuby 0.12 and XCode 4.4.1 (Mountain Lion), I created a Document-Based Application.
In my document window nib, I have two objects:
A NSTextView (in a NSScrollView), which has a custom class ...
0
votes
1answer
215 views
Creating an iTunes playlist and adding tracks in MacRuby
Why does this code result in an empty playlist, and how can I get that track into the playlist?
#!/usr/local/bin/macruby
framework 'Cocoa'
framework 'ScriptingBridge'
load_bridge_support_file ...
0
votes
1answer
149 views
can't load gem in macruby
I just started using MacRuby for a simple Mac Application, and I now have a problem.
For my project I use the rmagick gem.
I installed it as described with the command
sudo macgem install rmagick
...
8
votes
1answer
2k views
Xcode 4.4 + MacRuby = “macruby.h not found” (OS X 10.8 Mountain Lion)
I get the following error when trying to run a basic "Hello world" application in MacRuby on Xcode 4.4 in OS X 10.8 Mountain Lion:
"macruby.h not found"
How to resolve this problem?
0
votes
1answer
101 views
How can I use macrubyc under Mac OSX Lion?
I'm wondering if anyone of you has used macrubyc on Lion.
My problem is, that macrubyc depends on gcc-compiler. Lion is shipped without gcc.
Is it possible to use macrubyc with the shipped ...
1
vote
0answers
50 views
MacRuby issue with checkbox
I want to check the status of a checkbox within my program. When I code an if statement to check what its current state is, it automatically "checks" the box and continues with the first option, even ...
1
vote
0answers
50 views
Bonjour with Macruby
I understand using Dnssd within ruby but it seems that dnssd does not load in Macruby. I was curious if anyone knew of something like dnssd or could give an example way to browse bonjour on a network ...
0
votes
1answer
30 views
Porting a MacRuby app over from 0.3 Leopard to 0.6 Lion yields errors
I'm not sure why this is blowing up on me. These errors weren't present until I built on 0.6 / Lion, which is quite a ways off from 0.3, I know, but still it should work, unless something funky ...
-1
votes
1answer
50 views
Local EventMachine without opening port
I don't know a lot about TCP/IP but I am a self taught web developer. I have worked with EventMachine a little bit, Node.js a little bit, and recently wrote my first Mac application using MacRuby. I ...
0
votes
0answers
80 views
Macruby Authorization
Mac OS 10.7.3
MacRuby 0.12
I'm trying to get MacRuby to work with authorization so that I can run some scripts as an administrator. I'd like to avoid the old use apple scripts' do as administrator ...
0
votes
1answer
87 views
setting Address Book image with MacRuby
I am trying to set my user's Address Book Image with MacRuby. Here is what I have so far:
framework 'ScriptingBridge'
framework 'AppKit'
download = "/path.png"
data = ...
0
votes
1answer
166 views
Trouble using replaceCurrentItemWithPlayerItem when using MacRuby
I am using AVFoundation and MacRuby to handle video playback. I have no trouble getting a video to play in my AVPlayer initially using the code below:
videoWindow.setFrame(@frame, display:true, ...
1
vote
1answer
98 views
Converting images with MacRuby
Does anybody know how to convert images with MacRuby (or normal ruby)? I would imagine that the 'ScriptingBridge' framework would be able to handle it.
In addition, I would prefer not to use ...
0
votes
1answer
203 views
MacRuby can't link controller to new window xib
My Setup
XCode 4.3.2
MacRuby 0.12 (ruby 1.9.2) [universal-darwin10.0, x86_64]
Latest nightly as of 4 Jun, 2012
OS 10.7.3
Goal
Have a window with some controls in a separate XIB from ...
0
votes
1answer
52 views
macruby open() not working
The following example is, of course, not my entire app. I have provided the part of it that throws an error:
#!/usr/local/bin/macruby
require 'open-uri'
framework 'ScriptingBridge'
system "mkdir -p ...
1
vote
0answers
110 views
Can QtRuby applications be deployed on Apple's App Store?
I'm debating whether I should go with MacRuby or QtRuby. I definitely want to deploy my app on the App Store, however. If QtRuby cannot be deployed on the App Store, I will have to use MacRuby.
0
votes
0answers
81 views
Can't override ITunesTrack or any other class in the ITunes.h ScriptBridge
I'm trying to update my iTunes 'Date Added' setter with MacRuby.
I created the ScriptingBridge file, and I can read the tracks from the library. And since the dateAdded setter is R/O, I need to ...
3
votes
1answer
178 views
How do I create a C Pointer in MacRuby?
I am working with a C Framework in MacRuby which has a structure
int CPhidget_getSerialNumber(CPhidgetHandle phid,int * serialNumber)
You can see the full documentation here (if you are ...
0
votes
1answer
148 views
MacRuby NSBeginAlertSheet call gives unknown: [BUG] unknown Objective-C immediate: 0x1 (nil)
As a MacRuby beginner I am working through this tutorial, and want to add a drop-down sheet to warn when the user tries to delete an entry from the app.
Following the code here, which in Obj-C is
- ...



