[
  {
    "path": "App Launching like Twitter/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  App Launching like Twitter\n//\n//  Created by Daiki Okumura on 2015/05/08.\n//  Copyright (c) 2015 Daiki Okumura. All rights reserved.\n//\n\nimport UIKit\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n\n    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {\n        // Override point for customization after application launch.\n        \n        self.window = UIWindow(frame: UIScreen.mainScreen().bounds)\n        self.window!.backgroundColor = UIColor(red: 241/255, green: 196/255, blue: 15/255, alpha: 1)\n        self.window!.makeKeyAndVisible()\n        \n        // rootViewController from StoryBoard\n        let mainStoryboard: UIStoryboard = UIStoryboard(name: \"Main\", bundle: nil)\n        var navigationController = mainStoryboard.instantiateViewControllerWithIdentifier(\"navigationController\") as! UIViewController\n        self.window!.rootViewController = navigationController\n        \n        // logo mask\n        navigationController.view.layer.mask = CALayer()\n        navigationController.view.layer.mask.contents = UIImage(named: \"logo.png\")!.CGImage\n        navigationController.view.layer.mask.bounds = CGRect(x: 0, y: 0, width: 60, height: 60)\n        navigationController.view.layer.mask.anchorPoint = CGPoint(x: 0.5, y: 0.5)\n        navigationController.view.layer.mask.position = CGPoint(x: navigationController.view.frame.width / 2, y: navigationController.view.frame.height / 2)\n        \n        // logo mask background view\n        var maskBgView = UIView(frame: navigationController.view.frame)\n        maskBgView.backgroundColor = UIColor.whiteColor()\n        navigationController.view.addSubview(maskBgView)\n        navigationController.view.bringSubviewToFront(maskBgView)\n        \n        // logo mask animation\n        let transformAnimation = CAKeyframeAnimation(keyPath: \"bounds\")\n        transformAnimation.delegate = self\n        transformAnimation.duration = 1\n        transformAnimation.beginTime = CACurrentMediaTime() + 1 //add delay of 1 second\n        let initalBounds = NSValue(CGRect: navigationController.view.layer.mask.bounds)\n        let secondBounds = NSValue(CGRect: CGRect(x: 0, y: 0, width: 50, height: 50))\n        let finalBounds = NSValue(CGRect: CGRect(x: 0, y: 0, width: 2000, height: 2000))\n        transformAnimation.values = [initalBounds, secondBounds, finalBounds]\n        transformAnimation.keyTimes = [0, 0.5, 1]\n        transformAnimation.timingFunctions = [CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut), CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut)]\n        transformAnimation.removedOnCompletion = false\n        transformAnimation.fillMode = kCAFillModeForwards\n        navigationController.view.layer.mask.addAnimation(transformAnimation, forKey: \"maskAnimation\")\n        \n        // logo mask background view animation\n        UIView.animateWithDuration(0.1,\n            delay: 1.35,\n            options: UIViewAnimationOptions.CurveEaseIn,\n            animations: {\n                maskBgView.alpha = 0.0\n            },\n            completion: { finished in\n                maskBgView.removeFromSuperview()\n        })\n        \n        // root view animation\n        UIView.animateWithDuration(0.25,\n            delay: 1.3,\n            options: UIViewAnimationOptions.TransitionNone,\n            animations: {\n                self.window!.rootViewController!.view.transform = CGAffineTransformMakeScale(1.05, 1.05)\n            },\n            completion: { finished in\n                UIView.animateWithDuration(0.3,\n                    delay: 0.0,\n                    options: UIViewAnimationOptions.CurveEaseInOut,\n                    animations: {\n                        self.window!.rootViewController!.view.transform = CGAffineTransformIdentity\n                    },\n                    completion: nil\n                )\n        })\n        \n        return true\n    }\n\n    func applicationWillResignActive(application: UIApplication) {\n        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.\n        // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.\n    }\n\n    func applicationDidEnterBackground(application: UIApplication) {\n        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.\n        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n    }\n\n    func applicationWillEnterForeground(application: UIApplication) {\n        // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.\n    }\n\n    func applicationDidBecomeActive(application: UIApplication) {\n        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.\n    }\n\n    func applicationWillTerminate(application: UIApplication) {\n        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n    }\n\n    override func animationDidStop(anim: CAAnimation!, finished flag: Bool) {\n        // remove mask when animation completes\n        self.window!.rootViewController!.view.layer.mask = nil\n    }\n\n}\n\n"
  },
  {
    "path": "App Launching like Twitter/Base.lproj/LaunchScreen.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVersion=\"7531\" systemVersion=\"14C109\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"7520\"/>\n    </dependencies>\n    <objects>\n        <placeholder placeholderIdentifier=\"IBFilesOwner\" id=\"-1\" userLabel=\"File's Owner\"/>\n        <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"-2\" customClass=\"UIResponder\"/>\n        <view contentMode=\"scaleToFill\" id=\"iN0-l3-epB\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"480\"/>\n            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n            <subviews>\n                <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"logo.png\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Z8z-PV-Xho\">\n                    <rect key=\"frame\" x=\"210\" y=\"210\" width=\"60\" height=\"60\"/>\n                    <constraints>\n                        <constraint firstAttribute=\"width\" constant=\"60\" id=\"eHu-jc-n44\"/>\n                        <constraint firstAttribute=\"height\" constant=\"60\" id=\"hUP-LI-cRM\"/>\n                    </constraints>\n                </imageView>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"  Copyright (c) 2015 Daiki Okumura. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"9\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8ie-xW-0ye\" userLabel=\"Copyright (c) 2015 Daiki Okumura. All rights reserved.\">\n                    <rect key=\"frame\" x=\"20\" y=\"439\" width=\"441\" height=\"21\"/>\n                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                    <color key=\"textColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n            </subviews>\n            <color key=\"backgroundColor\" red=\"0.96231955289840698\" green=\"0.80934178829193115\" blue=\"0.17545920610427856\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n            <constraints>\n                <constraint firstAttribute=\"bottom\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"bottom\" constant=\"20\" id=\"Kzo-t9-V3l\"/>\n                <constraint firstItem=\"8ie-xW-0ye\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"MfP-vx-nX0\"/>\n                <constraint firstAttribute=\"centerY\" secondItem=\"Z8z-PV-Xho\" secondAttribute=\"centerY\" id=\"NgT-JA-bah\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"Z8z-PV-Xho\" secondAttribute=\"centerX\" id=\"TSa-gT-Qdm\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"centerX\" id=\"ZEH-qu-HZ9\"/>\n            </constraints>\n            <nil key=\"simulatedStatusBarMetrics\"/>\n            <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n            <point key=\"canvasLocation\" x=\"548\" y=\"455\"/>\n        </view>\n    </objects>\n    <resources>\n        <image name=\"logo.png\" width=\"1000\" height=\"1000\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "App Launching like Twitter/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"7531\" systemVersion=\"14C109\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" initialViewController=\"zth-CN-rRv\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"7520\"/>\n    </dependencies>\n    <scenes>\n        <!--HOME-->\n        <scene sceneID=\"SeQ-Ja-cH3\">\n            <objects>\n                <tableViewController id=\"Oka-iU-YAr\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" id=\"zES-cc-WYy\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"536\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                        <prototypes>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" id=\"Hea-wk-mgF\">\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Hea-wk-mgF\" id=\"fLg-JZ-uQs\">\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                </tableViewCellContentView>\n                            </tableViewCell>\n                        </prototypes>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"Oka-iU-YAr\" id=\"32B-nO-7Al\"/>\n                            <outlet property=\"delegate\" destination=\"Oka-iU-YAr\" id=\"wYt-I7-tHd\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"HOME\" id=\"nw0-CA-P67\">\n                        <barButtonItem key=\"leftBarButtonItem\" systemItem=\"add\" id=\"6rO-mN-eHv\">\n                            <color key=\"tintColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                        </barButtonItem>\n                        <barButtonItem key=\"rightBarButtonItem\" systemItem=\"search\" id=\"V9o-Wp-zjv\">\n                            <color key=\"tintColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                        </barButtonItem>\n                    </navigationItem>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"ANL-rr-SGQ\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-2257\" y=\"560\"/>\n        </scene>\n        <!--Navigation Controller-->\n        <scene sceneID=\"q02-Od-aIv\">\n            <objects>\n                <navigationController storyboardIdentifier=\"navigationController\" id=\"zth-CN-rRv\" sceneMemberID=\"viewController\">\n                    <simulatedStatusBarMetrics key=\"simulatedStatusBarMetrics\"/>\n                    <navigationBar key=\"navigationBar\" contentMode=\"scaleToFill\" translucent=\"NO\" id=\"jfS-VI-SwV\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"44\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <color key=\"barTintColor\" red=\"0.96231955289840698\" green=\"0.80934184789657593\" blue=\"0.17545926570892334\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <textAttributes key=\"titleTextAttributes\">\n                            <color key=\"textColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                        </textAttributes>\n                    </navigationBar>\n                    <connections>\n                        <segue destination=\"Oka-iU-YAr\" kind=\"relationship\" relationship=\"rootViewController\" id=\"h89-ZK-Wzu\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"hWO-JU-QMf\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-2929\" y=\"560\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "App Launching like Twitter/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "App Launching like Twitter/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>co.devlog.$(PRODUCT_NAME:rfc1034identifier)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UIStatusBarStyle</key>\n\t<string>UIStatusBarStyleLightContent</string>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UIViewControllerBasedStatusBarAppearance</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "App Launching like Twitter/ViewController.swift",
    "content": "//\n//  ViewController.swift\n//  App Launching like Twitter\n//\n//  Created by Daiki Okumura on 2015/05/08.\n//  Copyright (c) 2015 Daiki Okumura. All rights reserved.\n//\n\nimport UIKit\n\nclass ViewController: UIViewController {\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        // Do any additional setup after loading the view, typically from a nib.\n    }\n\n    override func didReceiveMemoryWarning() {\n        super.didReceiveMemoryWarning()\n        // Dispose of any resources that can be recreated.\n    }\n\n\n}\n\n"
  },
  {
    "path": "App Launching like Twitter.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t4F0C3D3D1AFCE09300030C8F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */; };\n\t\t4F0C3D3F1AFCE09300030C8F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0C3D3E1AFCE09300030C8F /* ViewController.swift */; };\n\t\t4F0C3D421AFCE09300030C8F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D401AFCE09300030C8F /* Main.storyboard */; };\n\t\t4F0C3D441AFCE09300030C8F /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D431AFCE09300030C8F /* Images.xcassets */; };\n\t\t4F0C3D471AFCE09300030C8F /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */; };\n\t\t4F0C3D531AFCE09300030C8F /* App_Launching_like_TwitterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */; };\n\t\t4F0C3D5E1AFCE53900030C8F /* logo.png in Resources */ = {isa = PBXBuildFile; fileRef = 4F0C3D5C1AFCE53900030C8F /* logo.png */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t4F0C3D4D1AFCE09300030C8F /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 4F0C3D2F1AFCE09300030C8F /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 4F0C3D361AFCE09300030C8F;\n\t\t\tremoteInfo = \"App Launching like Twitter\";\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = \"App Launching like Twitter.app\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t4F0C3D3B1AFCE09300030C8F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t4F0C3D3E1AFCE09300030C8F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = \"<group>\"; };\n\t\t4F0C3D411AFCE09300030C8F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t4F0C3D431AFCE09300030C8F /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\t4F0C3D461AFCE09300030C8F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = \"<group>\"; };\n\t\t4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = \"App Launching like TwitterTests.xctest\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t4F0C3D511AFCE09300030C8F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = App_Launching_like_TwitterTests.swift; sourceTree = \"<group>\"; };\n\t\t4F0C3D5C1AFCE53900030C8F /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t4F0C3D341AFCE09300030C8F /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t4F0C3D491AFCE09300030C8F /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t4F0C3D2E1AFCE09300030C8F = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D391AFCE09300030C8F /* App Launching like Twitter */,\n\t\t\t\t4F0C3D4F1AFCE09300030C8F /* App Launching like TwitterTests */,\n\t\t\t\t4F0C3D381AFCE09300030C8F /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4F0C3D381AFCE09300030C8F /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */,\n\t\t\t\t4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4F0C3D391AFCE09300030C8F /* App Launching like Twitter */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D3C1AFCE09300030C8F /* AppDelegate.swift */,\n\t\t\t\t4F0C3D3E1AFCE09300030C8F /* ViewController.swift */,\n\t\t\t\t4F0C3D5C1AFCE53900030C8F /* logo.png */,\n\t\t\t\t4F0C3D401AFCE09300030C8F /* Main.storyboard */,\n\t\t\t\t4F0C3D431AFCE09300030C8F /* Images.xcassets */,\n\t\t\t\t4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */,\n\t\t\t\t4F0C3D3A1AFCE09300030C8F /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = \"App Launching like Twitter\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4F0C3D3A1AFCE09300030C8F /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D3B1AFCE09300030C8F /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4F0C3D4F1AFCE09300030C8F /* App Launching like TwitterTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D521AFCE09300030C8F /* App_Launching_like_TwitterTests.swift */,\n\t\t\t\t4F0C3D501AFCE09300030C8F /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = \"App Launching like TwitterTests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4F0C3D501AFCE09300030C8F /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D511AFCE09300030C8F /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t4F0C3D361AFCE09300030C8F /* App Launching like Twitter */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 4F0C3D561AFCE09300030C8F /* Build configuration list for PBXNativeTarget \"App Launching like Twitter\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t4F0C3D331AFCE09300030C8F /* Sources */,\n\t\t\t\t4F0C3D341AFCE09300030C8F /* Frameworks */,\n\t\t\t\t4F0C3D351AFCE09300030C8F /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"App Launching like Twitter\";\n\t\t\tproductName = \"App Launching like Twitter\";\n\t\t\tproductReference = 4F0C3D371AFCE09300030C8F /* App Launching like Twitter.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t4F0C3D4B1AFCE09300030C8F /* App Launching like TwitterTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 4F0C3D591AFCE09300030C8F /* Build configuration list for PBXNativeTarget \"App Launching like TwitterTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t4F0C3D481AFCE09300030C8F /* Sources */,\n\t\t\t\t4F0C3D491AFCE09300030C8F /* Frameworks */,\n\t\t\t\t4F0C3D4A1AFCE09300030C8F /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t4F0C3D4E1AFCE09300030C8F /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"App Launching like TwitterTests\";\n\t\t\tproductName = \"App Launching like TwitterTests\";\n\t\t\tproductReference = 4F0C3D4C1AFCE09300030C8F /* App Launching like TwitterTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t4F0C3D2F1AFCE09300030C8F /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0630;\n\t\t\t\tORGANIZATIONNAME = \"Daiki Okumura\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t4F0C3D361AFCE09300030C8F = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.3;\n\t\t\t\t\t};\n\t\t\t\t\t4F0C3D4B1AFCE09300030C8F = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.3;\n\t\t\t\t\t\tTestTargetID = 4F0C3D361AFCE09300030C8F;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 4F0C3D321AFCE09300030C8F /* Build configuration list for PBXProject \"App Launching like Twitter\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 4F0C3D2E1AFCE09300030C8F;\n\t\t\tproductRefGroup = 4F0C3D381AFCE09300030C8F /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t4F0C3D361AFCE09300030C8F /* App Launching like Twitter */,\n\t\t\t\t4F0C3D4B1AFCE09300030C8F /* App Launching like TwitterTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t4F0C3D351AFCE09300030C8F /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4F0C3D5E1AFCE53900030C8F /* logo.png in Resources */,\n\t\t\t\t4F0C3D421AFCE09300030C8F /* Main.storyboard in Resources */,\n\t\t\t\t4F0C3D471AFCE09300030C8F /* LaunchScreen.xib in Resources */,\n\t\t\t\t4F0C3D441AFCE09300030C8F /* Images.xcassets in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t4F0C3D4A1AFCE09300030C8F /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t4F0C3D331AFCE09300030C8F /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4F0C3D3F1AFCE09300030C8F /* ViewController.swift in Sources */,\n\t\t\t\t4F0C3D3D1AFCE09300030C8F /* AppDelegate.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t4F0C3D481AFCE09300030C8F /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4F0C3D531AFCE09300030C8F /* App_Launching_like_TwitterTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t4F0C3D4E1AFCE09300030C8F /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 4F0C3D361AFCE09300030C8F /* App Launching like Twitter */;\n\t\t\ttargetProxy = 4F0C3D4D1AFCE09300030C8F /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t4F0C3D401AFCE09300030C8F /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D411AFCE09300030C8F /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t4F0C3D451AFCE09300030C8F /* LaunchScreen.xib */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t4F0C3D461AFCE09300030C8F /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.xib;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t4F0C3D541AFCE09300030C8F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t4F0C3D551AFCE09300030C8F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t4F0C3D571AFCE09300030C8F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = \"App Launching like Twitter/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t4F0C3D581AFCE09300030C8F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = \"App Launching like Twitter/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t4F0C3D5A1AFCE09300030C8F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = \"App Launching like TwitterTests/Info.plist\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/App Launching like Twitter.app/App Launching like Twitter\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t4F0C3D5B1AFCE09300030C8F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = \"App Launching like TwitterTests/Info.plist\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/App Launching like Twitter.app/App Launching like Twitter\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t4F0C3D321AFCE09300030C8F /* Build configuration list for PBXProject \"App Launching like Twitter\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t4F0C3D541AFCE09300030C8F /* Debug */,\n\t\t\t\t4F0C3D551AFCE09300030C8F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t4F0C3D561AFCE09300030C8F /* Build configuration list for PBXNativeTarget \"App Launching like Twitter\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t4F0C3D571AFCE09300030C8F /* Debug */,\n\t\t\t\t4F0C3D581AFCE09300030C8F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t};\n\t\t4F0C3D591AFCE09300030C8F /* Build configuration list for PBXNativeTarget \"App Launching like TwitterTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t4F0C3D5A1AFCE09300030C8F /* Debug */,\n\t\t\t\t4F0C3D5B1AFCE09300030C8F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 4F0C3D2F1AFCE09300030C8F /* Project object */;\n}\n"
  },
  {
    "path": "App Launching like TwitterTests/App_Launching_like_TwitterTests.swift",
    "content": "//\n//  App_Launching_like_TwitterTests.swift\n//  App Launching like TwitterTests\n//\n//  Created by Daiki Okumura on 2015/05/08.\n//  Copyright (c) 2015 Daiki Okumura. All rights reserved.\n//\n\nimport UIKit\nimport XCTest\n\nclass App_Launching_like_TwitterTests: XCTestCase {\n    \n    override func setUp() {\n        super.setUp()\n        // Put setup code here. This method is called before the invocation of each test method in the class.\n    }\n    \n    override func tearDown() {\n        // Put teardown code here. This method is called after the invocation of each test method in the class.\n        super.tearDown()\n    }\n    \n    func testExample() {\n        // This is an example of a functional test case.\n        XCTAssert(true, \"Pass\")\n    }\n    \n    func testPerformanceExample() {\n        // This is an example of a performance test case.\n        self.measureBlock() {\n            // Put the code you want to measure the time of here.\n        }\n    }\n    \n}\n"
  },
  {
    "path": "App Launching like TwitterTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>co.devlog.$(PRODUCT_NAME:rfc1034identifier)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Daiki Okumura\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "README.md",
    "content": "# App Launching like Twitter\nstartup animation like Twitter iOS app!\n\n![DEMO](./animation.gif)\n\n## Licence\nThis software is released under the MIT License, see LICENSE.txt."
  }
]