lib/under_os/delegate.rb in under-os-0.0.0 vs lib/under_os/delegate.rb in under-os-1.0.0
- old
+ new
@@ -1,9 +1,10 @@
#
-# Generic, per-app delegate
+# Just an app delegate to kick the things in
+#
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
- UnderOs::Application.new(application, launchOptions)
+ UnderOs::App.setup(application, launchOptions)
true
end
end