noun trademark 1. A proprietary toolchain, created by HipByte SPRL, for developing native iOS and OS X applications on Apple devices and computers by statically compiling the Ruby programming language. OR Apps the Ruby Way
Javascript ... plus gems are kind of like jQuery plugins ... plus MacBacon has spec tests like Jasmine would ... plus the REPL lets you live-modify like developer tools ... plus it compiles and obfuscates your final codebase ... OK, this analogy got out of control
AppDelegate def application(application, didFinishLaunchingWithOptions:launchOptions) @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) @window.rootViewController = HelloWorldController.new @window.makeKeyAndVisible true end end class HelloWorldController < UIViewController def viewDidLoad p "Hai" end end Now tests pass!
OR , just command click the view! # REPL input self.backgroundColor = UIColor.whiteColor @label = UILabel.new @label.text = "Hello World" @label.sizeToFit self.addSubview(@label) # get down from there! @label.center = [100, 100] OR , use sugarcube-repl's tree command.