he9qi/motion-wechat

View on GitHub
app/app_delegate.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AppDelegate
  def application(application, didFinishLaunchingWithOptions:launchOptions)
    return true if RUBYMOTION_ENV == 'test'

    # if you need to test a controller or something, add it here
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    ctlr = UIViewController.new
    @window.rootViewController = ctlr
    @window.makeKeyAndVisible

    true
  end
end