rubymotion/BubbleWrap

View on GitHub
samples/location/app/app_delegate.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AppDelegate
  def application(application, didFinishLaunchingWithOptions:launchOptions)
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    places_list_controller = PlacesListController.alloc.init
    @window.rootViewController = places_list_controller
    @window.makeKeyAndVisible
  end
end