Last active
February 10, 2017 16:22
-
-
Save hborders/de675b44e0df687e79c2f2378ba81ec0 to your computer and use it in GitHub Desktop.
TWFoundation tree
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TWFoundation.podspec # the podspec that our Twitch iOS App and the TWFoundationHost project below consume | |
TWFoundation | |
├── Podfile # Configures TWFoundationHost and TWFoundationHostTests | |
├── Podfile.lock | |
├── Pods | |
│ ├── ... # Pods stuff | |
├── TWFoundation | |
│ ├── NSArray+TWFoundation.h | |
│ ├── NSArray+TWFoundation.m | |
| ├── ... # More TWFoundation classes | |
├── TWFoundation.xcworkspace | |
│ ├── ... # More xcworkspace files | |
└── TWFoundationHost # an empty single-view application that consumes TWFoundation with its Podfile | |
├── TWFoundationHost | |
│ ├── AppDelegate.h | |
│ ├── AppDelegate.m | |
│ ├── Assets.xcassets | |
│ │ └── AppIcon.appiconset | |
│ │ └── Contents.json | |
│ ├── Base.lproj | |
│ │ ├── LaunchScreen.storyboard | |
│ │ └── Main.storyboard | |
│ ├── Info.plist | |
│ ├── ViewController.h | |
│ ├── ViewController.m | |
│ └── main.m | |
├── TWFoundationHost.xcodeproj | |
│ ├── project.pbxproj | |
│ ├── xcshareddata | |
│ │ └── xcschemes | |
│ │ └── TWFoundationHost.xcscheme | |
│ └── xcuserdata | |
│ └── bordersh.xcuserdatad | |
│ └── xcschemes | |
│ └── xcschememanagement.plist | |
└── TWFoundationHostTests # The unit tests | |
├── Info.plist | |
├── NSCFSetTests.m | |
├── NSHashTableTests.m | |
├── NSStringTWFoundationTests.m | |
└── NSURLTWFoundationTests.m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment