Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction of RubyMotion

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.

Introduction of RubyMotion

社内勉強会で利用したRubyMotionのスライドになります

Avatar for Harukasan

Harukasan PRO

April 04, 2014
Tweet

More Decks by Harukasan

Other Decks in Programming

Transcript

  1. RubyMotion is a revolutionary toolchain that lets you quickly develop

    and test native iOS and OS X applications for iPhone, iPad and Mac, all using the awesome Ruby language you know and love. — http://www.rubymotion.com/
  2. class AppDelegate def applicationDidFinishLaunching(notification) buildMenu ! window = NSWindow.alloc.initWithContentRect([[240, 180],

    [800, 500]], styleMask: NSTitledWindowMask…, backing: NSBackingStoreBuffered, defer: false) @main = MainController.new(window) end ! … end