Ruby on iPhone - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T14:32:40Zhttp://stackoverflow.com/feeds/question/219653http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/219653/ruby-on-iphone4Ruby on iPhoneBrian Heylin2008-10-20T19:51:14Z2009-11-13T17:25:53Z
<p>Hi I'm looking into iPhone development, and objective-c is not be my preferred language. As far as I can see at this moment Ruby cannot be used to talk to Cocoa-touch at the moment on the iPhone.</p>
<p>So my question is, am I wrong? Can I use Ruby on the iPhone to develop Cocoa-touch applications. And what is the future looking like for Ruby on the iPhone?</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/219659#21965912Answer by Ben Gottlieb for Ruby on iPhoneBen Gottlieb2008-10-20T19:54:08Z2008-10-20T19:54:08Z<p>No, you are correct. Currently, and most likely for the foreseeable future, Ruby will not be an option, at least for AppStore applications. There's no reason you couldn't do this on a Jailbroken phone, but Apple is pretty wed to Objective C for official development.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/219699#2196990Answer by Menkboy for Ruby on iPhoneMenkboy2008-10-20T20:06:23Z2008-10-20T20:06:23Z<p>There's an open-source <a href="http://rubycocoa.sourceforge.net/HomePage" rel="nofollow">Ruby-Cocoa bridge</a> you might try to get working. But I gather that there's a bit of an impedance mismatch between Ruby and ObjC that makes it a bit awkward to use.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/219717#2197175Answer by Jon Raphaelson for Ruby on iPhoneJon Raphaelson2008-10-20T20:11:25Z2008-10-20T20:11:25Z<p>Actually, the ruby cocoa bridge isn't awkward at all; things work remarkably smoothly, right down to connecting outlets in IB etc. The resulting code is down right beautiful.</p>
<p>As for iPhone development, if you want an official AppStore application, you're out of luck unfortunately. Apple dictated that iPhone is Obj-C/Cocoa Touch, and there's a clause in the SDK license saying that one of the things they <em>will</em> reject an app for is having a language interpreter/JIT compiler, so you couldn't add a ruby interpreter in your app yourself.</p>
<p>Off topic, but hilariously, this is why Flash for the iPhone is Adobe blowing smoke. They couldn't get a swf player onto the AppStore even if they wanted to, per Apple's license.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/219974#2199741Answer by Orion Edwards for Ruby on iPhoneOrion Edwards2008-10-20T21:19:52Z2008-10-20T21:19:52Z<p>I imagine it won't work right now, but I'd imagine that you'll eventually be able to use MacRuby to build iphone apps. Apple are putting a lot of work into it</p>
<p><a href="http://developer.apple.com/mac/articles/scriptingautomation/cocoaappswithmacruby.html" rel="nofollow">Here's a link to an ADC article describing how to build normal cocoa apps</a></p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/221244#2212449Answer by Kendall Helmstetter Gelner for Ruby on iPhoneKendall Helmstetter Gelner2008-10-21T09:06:29Z2008-10-21T09:06:29Z<p>You are better off as a programmer knowing a number of different languages - think of Objective-C as a good learning opportunity.</p>
<p>I've found that things you learn in other languages often make you a better programmer overall, and give you new insights into other languages you already know.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/232474#2324741Answer by Lee for Ruby on iPhoneLee2008-10-24T04:21:13Z2008-10-24T04:21:13Z<p>You don't have to use Objective-C to write iPhone apps. If you use QuickConnectiPhone, <a href="http://sourceforge.net/projects/quickconnect/" rel="nofollow">http://sourceforge.net/projects/quickconnect/</a>, you can write it completely in JavaScript, CSS, and HTML and still have an installable application not a web app.</p>
<p>If you know ruby you are probably working with JavaScript already.</p>
<p>To see how to install it, run it, and other ideas go to tetontech.wordpress.com</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/242770#2427700Answer by Louis Gerbarg for Ruby on iPhoneLouis Gerbarg2008-10-28T10:19:37Z2008-10-28T10:19:37Z<p>The Ruby Cocoa bridge probably will not work. Most of the bridges for dynamic languages need to generate executable thunks (either manually or with libffi). More limited bridges (for more static languages) may not have such issues.</p>
<p>In either event, bringing up a bridge is probably going to require becoming more familiar with the Objective C runtime than one would just learning how to write Cocoa Touch apps, which probably defeats the point of doing it in the first place.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/275393#27539317Answer by Tim Burks for Ruby on iPhoneTim Burks2008-11-09T00:04:55Z2008-11-09T00:04:55Z<p>In the iPhone OS, mprotect() will fail if you try to use it to mark writable sections of memory as executable. This breaks bridges like RubyCocoa (and probably MacRuby) that use libffi to create Objective-C method handlers at runtime. I believe that this is by design because it was not always the case.</p>
<p>Ultimately, this is more a matter of platform politics than technology, but a technical workaround for this exists. Instead of generating custom method handlers at runtime, precompile a pool of reconfigurable ones that are assigned as needed, essentially making the bridging process entirely data-driven. As far as I know, this is not yet being done in RubyCocoa or MacRuby. </p>
<p>Another significant thing to consider is that the compiled Ruby and RubyCocoa runtimes can be significantly larger than compiled Objective-C apps. If these libraries were available on the iPhone, this wouldn't be an issue, but for now, even if you had RubyCocoa working, you might not want to use it for apps that you distribute.</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/475180#4751800Answer by methym for Ruby on iPhonemethym2009-01-24T00:24:15Z2009-01-24T00:24:15Z<p><a href="http://rhomobile.com/" rel="nofollow">rhomobile</a> is an option to run ruby code on the iPhone, but it's essentially web app development. A web server runs locally on the iPhone and your ruby code renders to standard client side web technologies (html/css/javascript).</p>
<p><a href="http://rhomobile.com/" rel="nofollow">http://rhomobile.com/</a></p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/921060#9210600Answer by Ralph for Ruby on iPhoneRalph2009-05-28T14:15:00Z2009-05-28T14:15:00Z<p>Hi,</p>
<p>I also trying to write an iPhone app in ruby using the RubyCocoaBrigde. Have you figured anything out yet if it is possible? In my case it would be kind of "prove of concept" application, so I do not need apples blessing for it ;)</p>
<p>Thanks,
Ralph</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/1420730#14207300Answer by tiago for Ruby on iPhonetiago2009-09-14T10:23:12Z2009-09-14T10:23:12Z<p>I guess this is coming a bit late, but still I will leave it here if anyone finds this topic again.</p>
<p>MonoTouch was launched recently and provides an alternative way to develop iphone apps (c# / mono).</p>
<p><a href="http://monotouch.net/" rel="nofollow">http://monotouch.net/</a></p>
<p>Warning : Commercial Paid "Application".</p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/1429106#14291060Answer by Adam Blum for Ruby on iPhoneAdam Blum2009-09-15T19:14:13Z2009-09-15T19:14:13Z<p>Uh, Rhodes (Rhomobile) does allow you to do native apps on the iPhone and all other smartphones. Yes, we do leverage doing rendering via the WebUIView control. But we allow all device capabilities and synchronized local data. </p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/1656312#16563120Answer by Radamanthus for Ruby on iPhoneRadamanthus2009-11-01T03:35:05Z2009-11-01T03:35:05Z<p>You might want to take a look at <a href="http://www.cocos2d-iphone.org/wiki/doku.php/shinycocos%3Afaq" rel="nofollow">shinycocos</a>. It is a child project of <a href="http://www.cocos2d-iphone.org/" rel="nofollow">cocos2d-iphone</a>, an Objective-C game programming framework for iPhone. </p>
<p>I haven't yet played with it, but from the <a href="http://github.com/funkaster/shinycocos/blob/master/README.rdoc" rel="nofollow">git README</a> I infer that it bundles Ruby 1.9.1 into your app. </p>
http://stackoverflow.com/questions/219653/ruby-on-iphone/1730730#17307300Answer by Jim for Ruby on iPhoneJim2009-11-13T17:25:53Z2009-11-13T17:25:53Z<p>One possible solution would be to create an application wrapping for example the rice library (google it) which includes a ruby-vm. I reckon you would be able to create c++ wrappers that you could expose to ruby, thus making an environment for iphone development with ruby. This probably requires a lot of work though ^^</p>