From a4e8c101be0bcfb398ffa4082b32258e6cd49b96 Mon Sep 17 00:00:00 2001 From: Gordon Fontenot Date: Wed, 4 Feb 2015 13:08:53 -0600 Subject: [PATCH] Add header comment to default AppDelegate.swift This is the default for files from Xcode. Even though we at thoughtbot dislike these header comments, we should use the default behavior here for Liftoff. This file is easily overridden by a custom app delegate template, so removing these comments is trivial. --- templates/AppDelegate.swift | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/AppDelegate.swift b/templates/AppDelegate.swift index 49cc4db..5210df1 100644 --- a/templates/AppDelegate.swift +++ b/templates/AppDelegate.swift @@ -1,3 +1,11 @@ +// +// AppDelegate.swift +// <%= project_name %> +// +// Created by <%= author %> on <%= Time.now.strftime("%-m/%-d/%y") %> +// Copyright (c) <%= Time.now.strftime('%Y') %> <%= company %>. All rights reserved. +// + import UIKit @UIApplicationMain