app/app_delegate.rb in geomotion-0.10.0 vs app/app_delegate.rb in geomotion-0.12.1

- old
+ new

@@ -1,5 +1,10 @@ class AppDelegate def application(application, didFinishLaunchingWithOptions:launchOptions) + @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) + ctlr = ShearingController.new + first = UINavigationController.alloc.initWithRootViewController(ctlr) + @window.rootViewController = first + @window.makeKeyAndVisible true end end