├── 01-Alamofire ├── .gitignore ├── Alamo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Alamo.xcworkspace │ └── contents.xcworkspacedata ├── Alamo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CreatePostViewController.swift │ ├── Info.plist │ └── PostsViewController.swift ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock └── Pods │ ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Alamofire.swift │ │ ├── Download.swift │ │ ├── Error.swift │ │ ├── Manager.swift │ │ ├── MultipartFormData.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── Stream.swift │ │ ├── Upload.swift │ │ └── Validation.swift │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ └── Pods-Alamo │ ├── Info.plist │ ├── Pods-Alamo-acknowledgements.markdown │ ├── Pods-Alamo-acknowledgements.plist │ ├── Pods-Alamo-dummy.m │ ├── Pods-Alamo-frameworks.sh │ ├── Pods-Alamo-resources.sh │ ├── Pods-Alamo-umbrella.h │ ├── Pods-Alamo.debug.xcconfig │ ├── Pods-Alamo.modulemap │ └── Pods-Alamo.release.xcconfig ├── 02-Chameleon ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Pascal.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Pascal.xcworkspace │ └── contents.xcworkspacedata ├── Pascal │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ImageViewController.swift │ ├── Info.plist │ ├── RainbowViewController.swift │ ├── ViewController.swift │ ├── wallpaper.jpg │ └── wallpaper2.jpg ├── Podfile ├── Podfile.lock └── Pods │ ├── ChameleonFramework │ ├── LICENSE.md │ ├── Pod │ │ └── Classes │ │ │ └── Objective-C │ │ │ ├── Chameleon.h │ │ │ ├── ChameleonConstants.h │ │ │ ├── ChameleonConstants.m │ │ │ ├── ChameleonEnums.h │ │ │ ├── ChameleonMacros.h │ │ │ ├── Chameleon_.h │ │ │ ├── Chameleon_.m │ │ │ ├── NSArray+Chameleon.h │ │ │ ├── NSArray+Chameleon.m │ │ │ ├── UIButton+Chameleon.h │ │ │ ├── UIButton+Chameleon.m │ │ │ ├── UIColor+Chameleon.h │ │ │ ├── UIColor+Chameleon.m │ │ │ ├── UIColor+ChameleonPrivate.h │ │ │ ├── UIColor+ChameleonPrivate.m │ │ │ ├── UIImage+ChameleonPrivate.h │ │ │ ├── UIImage+ChameleonPrivate.m │ │ │ ├── UILabel+Chameleon.h │ │ │ ├── UILabel+Chameleon.m │ │ │ ├── UINavigationController+Chameleon.h │ │ │ ├── UINavigationController+Chameleon.m │ │ │ ├── UIView+ChameleonPrivate.h │ │ │ ├── UIView+ChameleonPrivate.m │ │ │ ├── UIViewController+Chameleon.h │ │ │ └── UIViewController+Chameleon.m │ └── README.md │ ├── Headers │ └── Private │ │ └── ChameleonFramework │ │ ├── Chameleon.h │ │ ├── ChameleonConstants.h │ │ ├── ChameleonEnums.h │ │ ├── ChameleonMacros.h │ │ ├── Chameleon_.h │ │ ├── NSArray+Chameleon.h │ │ ├── UIButton+Chameleon.h │ │ ├── UIColor+Chameleon.h │ │ ├── UIColor+ChameleonPrivate.h │ │ ├── UIImage+ChameleonPrivate.h │ │ ├── UILabel+Chameleon.h │ │ ├── UINavigationController+Chameleon.h │ │ ├── UIView+ChameleonPrivate.h │ │ └── UIViewController+Chameleon.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── ChameleonFramework │ ├── ChameleonFramework-dummy.m │ ├── ChameleonFramework-prefix.pch │ ├── ChameleonFramework-umbrella.h │ ├── ChameleonFramework.modulemap │ ├── ChameleonFramework.xcconfig │ └── Info.plist │ └── Pods-Pascal │ ├── Info.plist │ ├── Pods-Pascal-acknowledgements.markdown │ ├── Pods-Pascal-acknowledgements.plist │ ├── Pods-Pascal-dummy.m │ ├── Pods-Pascal-frameworks.sh │ ├── Pods-Pascal-resources.sh │ ├── Pods-Pascal-umbrella.h │ ├── Pods-Pascal.debug.xcconfig │ ├── Pods-Pascal.modulemap │ └── Pods-Pascal.release.xcconfig ├── 03-SwiftLint ├── .gitignore ├── .swiftlint.yml ├── Linted.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Linted │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── 04-Async ├── .gitignore ├── Asynchronous.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Asynchronous.xcworkspace │ └── contents.xcworkspacedata ├── Asynchronous │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock └── Pods │ ├── AsyncSwift │ ├── LICENSE.txt │ ├── README.md │ └── Source │ │ └── Async.swift │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── AsyncSwift │ ├── AsyncSwift-dummy.m │ ├── AsyncSwift-prefix.pch │ ├── AsyncSwift-umbrella.h │ ├── AsyncSwift.modulemap │ ├── AsyncSwift.xcconfig │ └── Info.plist │ └── Pods-Asynchronous │ ├── Info.plist │ ├── Pods-Asynchronous-acknowledgements.markdown │ ├── Pods-Asynchronous-acknowledgements.plist │ ├── Pods-Asynchronous-dummy.m │ ├── Pods-Asynchronous-frameworks.sh │ ├── Pods-Asynchronous-resources.sh │ ├── Pods-Asynchronous-umbrella.h │ ├── Pods-Asynchronous.debug.xcconfig │ ├── Pods-Asynchronous.modulemap │ └── Pods-Asynchronous.release.xcconfig ├── 05-Static ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ └── Static │ │ │ └── Static.h │ ├── Local Podspecs │ │ └── Static.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Static │ │ ├── LICENSE │ │ ├── Readme.markdown │ │ └── Static │ │ │ ├── ButtonCell.swift │ │ │ ├── CellType.swift │ │ │ ├── DataSource.swift │ │ │ ├── Row.swift │ │ │ ├── Section.swift │ │ │ ├── Static.h │ │ │ ├── SubtitleCell.swift │ │ │ ├── TableViewController.swift │ │ │ ├── Value1Cell.swift │ │ │ └── Value2Cell.swift │ └── Target Support Files │ │ ├── Pods-Statico │ │ ├── Info.plist │ │ ├── Pods-Statico-acknowledgements.markdown │ │ ├── Pods-Statico-acknowledgements.plist │ │ ├── Pods-Statico-dummy.m │ │ ├── Pods-Statico-frameworks.sh │ │ ├── Pods-Statico-resources.sh │ │ ├── Pods-Statico-umbrella.h │ │ ├── Pods-Statico.debug.xcconfig │ │ ├── Pods-Statico.modulemap │ │ └── Pods-Statico.release.xcconfig │ │ └── Static │ │ ├── Info.plist │ │ ├── Static-dummy.m │ │ ├── Static-prefix.pch │ │ ├── Static-umbrella.h │ │ ├── Static.modulemap │ │ └── Static.xcconfig ├── Statico.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Statico.xcworkspace │ └── contents.xcworkspacedata └── Statico │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── 06-AMScrollingNavbar ├── .gitignore ├── Alamo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Alamo.xcworkspace │ └── contents.xcworkspacedata ├── Alamo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CreatePostViewController.swift │ ├── Info.plist │ └── PostsViewController.swift ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock └── Pods │ ├── AMScrollingNavbar │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── ScrollingNavbar+Sizes.swift │ │ ├── ScrollingNavigationController.swift │ │ └── ScrollingNavigationViewController.swift │ ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Alamofire.swift │ │ ├── Download.swift │ │ ├── Error.swift │ │ ├── Manager.swift │ │ ├── MultipartFormData.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── Stream.swift │ │ ├── Upload.swift │ │ └── Validation.swift │ ├── Headers │ └── Private │ │ └── PKHUD │ │ └── PKHUD.h │ ├── Manifest.lock │ ├── PKHUD │ ├── LICENSE │ ├── PKHUD │ │ ├── FrameView.swift │ │ ├── Images.xcassets │ │ │ ├── checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark.pdf │ │ │ ├── cross.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cross.pdf │ │ │ └── progress.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── progress.pdf │ │ ├── PKHUD.h │ │ ├── PKHUD.swift │ │ ├── PKHUDAnimating.swift │ │ ├── PKHUDAssets.swift │ │ ├── PKHUDErrorView.swift │ │ ├── PKHUDImageView.swift │ │ ├── PKHUDProgressView.swift │ │ ├── PKHUDSquareBaseView.swift │ │ ├── PKHUDStatusView.swift │ │ ├── PKHUDSubtitleView.swift │ │ ├── PKHUDSuccessView.swift │ │ ├── PKHUDSystemActivityIndicatorView.swift │ │ ├── PKHUDTextView.swift │ │ ├── PKHUDTitleView.swift │ │ ├── PKHUDWideBaseView.swift │ │ ├── Window.swift │ │ └── WindowRootViewController.swift │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── AMScrollingNavbar │ ├── AMScrollingNavbar-dummy.m │ ├── AMScrollingNavbar-prefix.pch │ ├── AMScrollingNavbar-umbrella.h │ ├── AMScrollingNavbar.modulemap │ ├── AMScrollingNavbar.xcconfig │ └── Info.plist │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── PKHUD │ ├── Info.plist │ ├── PKHUD-dummy.m │ ├── PKHUD-prefix.pch │ ├── PKHUD-umbrella.h │ ├── PKHUD.modulemap │ └── PKHUD.xcconfig │ └── Pods-Alamo │ ├── Info.plist │ ├── Pods-Alamo-acknowledgements.markdown │ ├── Pods-Alamo-acknowledgements.plist │ ├── Pods-Alamo-dummy.m │ ├── Pods-Alamo-frameworks.sh │ ├── Pods-Alamo-resources.sh │ ├── Pods-Alamo-umbrella.h │ ├── Pods-Alamo.debug.xcconfig │ ├── Pods-Alamo.modulemap │ └── Pods-Alamo.release.xcconfig ├── 07-Quick-and-Nimble ├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Checkouts │ │ ├── Nimble │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── Nimble.podspec │ │ ├── Nimble.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ └── Nimble-tvOS.xcscheme │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ ├── ObjCExpectation.swift │ │ │ ├── Utils │ │ │ │ ├── Functional.swift │ │ │ │ ├── Poll.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ ├── Wrappers │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ └── ObjCMatcher.swift │ │ │ └── objc │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ └── NMBExceptionCapture.m │ │ ├── NimbleTests │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ └── utils.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ │ ├── AllPassTest.swift │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ ├── BeNilTest.swift │ │ │ │ ├── BeginWithTest.swift │ │ │ │ ├── ContainTest.swift │ │ │ │ ├── EndWithTest.swift │ │ │ │ ├── EqualTest.swift │ │ │ │ ├── HaveCountTest.swift │ │ │ │ ├── MatchTest.swift │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ └── ThrowErrorTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ │ ├── Nimble-OSXTests-Bridging-Header.h │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ ├── NimbleTests-Bridging-Header.h │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ ├── ObjCContainTest.m │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ └── ObjCUserDescriptionTest.m │ │ ├── README.md │ │ ├── circle.yml │ │ ├── script │ │ │ └── release │ │ └── test │ │ └── Quick │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Documentation │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ └── TestingApps.md │ │ ├── Externals │ │ └── Nimble │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── Nimble.podspec │ │ │ ├── Nimble.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ ├── ObjCExpectation.swift │ │ │ ├── Utils │ │ │ │ ├── Functional.swift │ │ │ │ ├── Poll.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ ├── Wrappers │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ └── ObjCMatcher.swift │ │ │ └── objc │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ └── NMBExceptionCapture.m │ │ │ ├── NimbleTests │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ └── utils.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ │ ├── AllPassTest.swift │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ ├── BeNilTest.swift │ │ │ │ ├── BeginWithTest.swift │ │ │ │ ├── ContainTest.swift │ │ │ │ ├── EndWithTest.swift │ │ │ │ ├── EqualTest.swift │ │ │ │ ├── HaveCountTest.swift │ │ │ │ ├── MatchTest.swift │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ └── ThrowErrorTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ │ ├── Nimble-OSXTests-Bridging-Header.h │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ ├── NimbleTests-Bridging-Header.h │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ ├── ObjCContainTest.m │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ └── ObjCUserDescriptionTest.m │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── script │ │ │ └── release │ │ │ └── test │ │ ├── LICENSE │ │ ├── Quick Templates │ │ ├── Quick Configuration Class.xctemplate │ │ │ ├── Objective-C │ │ │ │ ├── ___FILEBASENAME___.h │ │ │ │ └── ___FILEBASENAME___.m │ │ │ ├── Swift │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ ├── TemplateIcon.icns │ │ │ └── TemplateInfo.plist │ │ └── Quick Spec Class.xctemplate │ │ │ ├── Objective-C │ │ │ └── ___FILEBASENAME___.m │ │ │ ├── Swift │ │ │ └── ___FILEBASENAME___.swift │ │ │ ├── TemplateIcon.icns │ │ │ └── TemplateInfo.plist │ │ ├── Quick.podspec │ │ ├── Quick.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Quick-OSX.xcscheme │ │ │ ├── Quick-iOS.xcscheme │ │ │ └── Quick-tvOS.xcscheme │ │ ├── Quick.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── Quick │ │ ├── Callsite.swift │ │ ├── Configuration │ │ │ ├── Configuration.swift │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickConfiguration.m │ │ ├── DSL │ │ │ ├── DSL.swift │ │ │ ├── QCKDSL.h │ │ │ ├── QCKDSL.m │ │ │ ├── World+DSL.h │ │ │ └── World+DSL.swift │ │ ├── Example.swift │ │ ├── ExampleGroup.swift │ │ ├── ExampleMetadata.swift │ │ ├── Filter.swift │ │ ├── Hooks │ │ │ ├── Closures.swift │ │ │ ├── ExampleHooks.swift │ │ │ └── SuiteHooks.swift │ │ ├── Info.plist │ │ ├── NSString+QCKSelectorName.h │ │ ├── NSString+QCKSelectorName.m │ │ ├── Quick.h │ │ ├── QuickSpec.h │ │ ├── QuickSpec.m │ │ ├── World.h │ │ └── World.swift │ │ ├── QuickFocusedTests │ │ ├── FocusedTests+ObjC.m │ │ ├── FocusedTests.swift │ │ └── Info.plist │ │ ├── QuickTests │ │ ├── Fixtures │ │ │ └── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ │ ├── FunctionalTests │ │ │ ├── AfterEachTests+ObjC.m │ │ │ ├── AfterEachTests.swift │ │ │ ├── AfterSuiteTests+ObjC.m │ │ │ ├── AfterSuiteTests.swift │ │ │ ├── BeforeEachTests+ObjC.m │ │ │ ├── BeforeEachTests.swift │ │ │ ├── BeforeSuiteTests+ObjC.m │ │ │ ├── BeforeSuiteTests.swift │ │ │ ├── Configuration │ │ │ │ ├── AfterEach │ │ │ │ │ ├── Configuration+AfterEach.swift │ │ │ │ │ └── Configuration+AfterEachTests.swift │ │ │ │ └── BeforeEach │ │ │ │ │ ├── Configuration+BeforeEach.swift │ │ │ │ │ └── Configuration+BeforeEachTests.swift │ │ │ ├── FailureTests+ObjC.m │ │ │ ├── FailureUsingXCTAssertTests+ObjC.m │ │ │ ├── ItTests+ObjC.m │ │ │ ├── ItTests.swift │ │ │ ├── PendingTests+ObjC.m │ │ │ ├── PendingTests.swift │ │ │ ├── SharedExamples+BeforeEachTests+ObjC.m │ │ │ ├── SharedExamples+BeforeEachTests.swift │ │ │ ├── SharedExamplesTests+ObjC.m │ │ │ └── SharedExamplesTests.swift │ │ ├── Helpers │ │ │ ├── QCKSpecRunner.h │ │ │ ├── QCKSpecRunner.m │ │ │ ├── QuickTestsBridgingHeader.h │ │ │ └── XCTestObservationCenter+QCKSuspendObservation.h │ │ ├── Info.plist │ │ └── QuickConfigurationTests.m │ │ ├── README.md │ │ ├── Rakefile │ │ ├── circle.yml │ │ └── script │ │ └── release ├── QuickNimble.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── QuickNimble │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── QuickNimbleTests │ ├── CoolNimbleMatchersDemo.swift │ ├── HealthViewConfiguratorSpec.swift │ └── Info.plist ├── 08-Regex ├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Checkouts │ │ └── Regex │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Carthage │ │ └── Checkouts │ │ │ ├── Nimble │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── Nimble.podspec │ │ │ ├── Nimble.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ ├── Nimble │ │ │ │ ├── Adapters │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ │ ├── DSL+Wait.swift │ │ │ │ ├── DSL.swift │ │ │ │ ├── Expectation.swift │ │ │ │ ├── Expression.swift │ │ │ │ ├── FailureMessage.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Matchers │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ ├── BeAKindOf.swift │ │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ │ ├── BeCloseTo.swift │ │ │ │ │ ├── BeEmpty.swift │ │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ │ ├── BeLessThan.swift │ │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ │ ├── BeLogical.swift │ │ │ │ │ ├── BeNil.swift │ │ │ │ │ ├── BeginWith.swift │ │ │ │ │ ├── Contain.swift │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ ├── Equal.swift │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ ├── Match.swift │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ └── ThrowError.swift │ │ │ │ ├── Nimble.h │ │ │ │ ├── ObjCExpectation.swift │ │ │ │ ├── Utils │ │ │ │ │ ├── Functional.swift │ │ │ │ │ ├── Poll.swift │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ └── Stringers.swift │ │ │ │ ├── Wrappers │ │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ └── ObjCMatcher.swift │ │ │ │ └── objc │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── DSL.m │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ └── NMBExceptionCapture.m │ │ │ ├── NimbleTests │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ ├── Helpers │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ └── utils.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Matchers │ │ │ │ │ ├── AllPassTest.swift │ │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ │ ├── BeNilTest.swift │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ ├── SynchronousTests.swift │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ └── objc │ │ │ │ │ ├── Nimble-OSXTests-Bridging-Header.h │ │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ │ ├── NimbleTests-Bridging-Header.h │ │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ │ ├── ObjCContainTest.m │ │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ └── ObjCUserDescriptionTest.m │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── script │ │ │ │ └── release │ │ │ └── test │ │ │ └── Quick │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Documentation │ │ │ ├── ArrangeActAssert.md │ │ │ ├── BehavioralTesting.md │ │ │ ├── ConfiguringQuick.md │ │ │ ├── InstallingFileTemplates.md │ │ │ ├── InstallingQuick.md │ │ │ ├── MoreResources.md │ │ │ ├── NimbleAssertions.md │ │ │ ├── QuickExamplesAndGroups.md │ │ │ ├── QuickInObjectiveC.md │ │ │ ├── README.md │ │ │ ├── SettingUpYourXcodeProject.md │ │ │ ├── SharedExamples.md │ │ │ └── TestingApps.md │ │ │ ├── Externals │ │ │ └── Nimble │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Nimble.podspec │ │ │ │ ├── Nimble.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ │ ├── Nimble │ │ │ │ ├── Adapters │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ │ ├── DSL+Wait.swift │ │ │ │ ├── DSL.swift │ │ │ │ ├── Expectation.swift │ │ │ │ ├── Expression.swift │ │ │ │ ├── FailureMessage.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Matchers │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ ├── BeAKindOf.swift │ │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ │ ├── BeCloseTo.swift │ │ │ │ │ ├── BeEmpty.swift │ │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ │ ├── BeLessThan.swift │ │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ │ ├── BeLogical.swift │ │ │ │ │ ├── BeNil.swift │ │ │ │ │ ├── BeginWith.swift │ │ │ │ │ ├── Contain.swift │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ ├── Equal.swift │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ ├── Match.swift │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ └── ThrowError.swift │ │ │ │ ├── Nimble.h │ │ │ │ ├── ObjCExpectation.swift │ │ │ │ ├── Utils │ │ │ │ │ ├── Functional.swift │ │ │ │ │ ├── Poll.swift │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ └── Stringers.swift │ │ │ │ ├── Wrappers │ │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ └── ObjCMatcher.swift │ │ │ │ └── objc │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── DSL.m │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ └── NMBExceptionCapture.m │ │ │ │ ├── NimbleTests │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ ├── Helpers │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ └── utils.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Matchers │ │ │ │ │ ├── AllPassTest.swift │ │ │ │ │ ├── BeAKindOfTest.swift │ │ │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ │ │ ├── BeCloseToTest.swift │ │ │ │ │ ├── BeEmptyTest.swift │ │ │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ │ │ ├── BeGreaterThanTest.swift │ │ │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ │ │ ├── BeIdenticalToTest.swift │ │ │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ │ │ ├── BeLessThanTest.swift │ │ │ │ │ ├── BeLogicalTest.swift │ │ │ │ │ ├── BeNilTest.swift │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ ├── SynchronousTests.swift │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ └── objc │ │ │ │ │ ├── Nimble-OSXTests-Bridging-Header.h │ │ │ │ │ ├── NimbleSpecHelper.h │ │ │ │ │ ├── NimbleTests-Bridging-Header.h │ │ │ │ │ ├── ObjCAllPassTest.m │ │ │ │ │ ├── ObjCAsyncTest.m │ │ │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ │ │ ├── ObjCBeCloseToTest.m │ │ │ │ │ ├── ObjCBeEmptyTest.m │ │ │ │ │ ├── ObjCBeFalseTest.m │ │ │ │ │ ├── ObjCBeFalsyTest.m │ │ │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ │ │ ├── ObjCBeKindOfTest.m │ │ │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ │ │ ├── ObjCBeLessThanTest.m │ │ │ │ │ ├── ObjCBeNilTest.m │ │ │ │ │ ├── ObjCBeTrueTest.m │ │ │ │ │ ├── ObjCBeTruthyTest.m │ │ │ │ │ ├── ObjCBeginWithTest.m │ │ │ │ │ ├── ObjCContainTest.m │ │ │ │ │ ├── ObjCEndWithTest.m │ │ │ │ │ ├── ObjCEqualTest.m │ │ │ │ │ ├── ObjCHaveCount.m │ │ │ │ │ ├── ObjCMatchTest.m │ │ │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ └── ObjCUserDescriptionTest.m │ │ │ │ ├── README.md │ │ │ │ ├── circle.yml │ │ │ │ ├── script │ │ │ │ └── release │ │ │ │ └── test │ │ │ ├── LICENSE │ │ │ ├── Quick Templates │ │ │ ├── Quick Configuration Class.xctemplate │ │ │ │ ├── Objective-C │ │ │ │ │ ├── ___FILEBASENAME___.h │ │ │ │ │ └── ___FILEBASENAME___.m │ │ │ │ ├── Swift │ │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ │ ├── TemplateIcon.icns │ │ │ │ └── TemplateInfo.plist │ │ │ └── Quick Spec Class.xctemplate │ │ │ │ ├── Objective-C │ │ │ │ └── ___FILEBASENAME___.m │ │ │ │ ├── Swift │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ │ ├── TemplateIcon.icns │ │ │ │ └── TemplateInfo.plist │ │ │ ├── Quick.podspec │ │ │ ├── Quick.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Quick-OSX.xcscheme │ │ │ │ ├── Quick-iOS.xcscheme │ │ │ │ └── Quick-tvOS.xcscheme │ │ │ ├── Quick.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ ├── Quick │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ ├── Configuration.swift │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── QCKDSL.m │ │ │ │ ├── World+DSL.h │ │ │ │ └── World+DSL.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── Info.plist │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── NSString+QCKSelectorName.m │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ ├── World.h │ │ │ └── World.swift │ │ │ ├── QuickFocusedTests │ │ │ ├── FocusedTests+ObjC.m │ │ │ ├── FocusedTests.swift │ │ │ └── Info.plist │ │ │ ├── QuickTests │ │ │ ├── Fixtures │ │ │ │ └── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ │ │ ├── FunctionalTests │ │ │ │ ├── AfterEachTests+ObjC.m │ │ │ │ ├── AfterEachTests.swift │ │ │ │ ├── AfterSuiteTests+ObjC.m │ │ │ │ ├── AfterSuiteTests.swift │ │ │ │ ├── BeforeEachTests+ObjC.m │ │ │ │ ├── BeforeEachTests.swift │ │ │ │ ├── BeforeSuiteTests+ObjC.m │ │ │ │ ├── BeforeSuiteTests.swift │ │ │ │ ├── Configuration │ │ │ │ │ ├── AfterEach │ │ │ │ │ │ ├── Configuration+AfterEach.swift │ │ │ │ │ │ └── Configuration+AfterEachTests.swift │ │ │ │ │ └── BeforeEach │ │ │ │ │ │ ├── Configuration+BeforeEach.swift │ │ │ │ │ │ └── Configuration+BeforeEachTests.swift │ │ │ │ ├── FailureTests+ObjC.m │ │ │ │ ├── FailureUsingXCTAssertTests+ObjC.m │ │ │ │ ├── ItTests+ObjC.m │ │ │ │ ├── ItTests.swift │ │ │ │ ├── PendingTests+ObjC.m │ │ │ │ ├── PendingTests.swift │ │ │ │ ├── SharedExamples+BeforeEachTests+ObjC.m │ │ │ │ ├── SharedExamples+BeforeEachTests.swift │ │ │ │ ├── SharedExamplesTests+ObjC.m │ │ │ │ └── SharedExamplesTests.swift │ │ │ ├── Helpers │ │ │ │ ├── QCKSpecRunner.h │ │ │ │ ├── QCKSpecRunner.m │ │ │ │ ├── QuickTestsBridgingHeader.h │ │ │ │ └── XCTestObservationCenter+QCKSuspendObservation.h │ │ │ ├── Info.plist │ │ │ └── QuickConfigurationTests.m │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── circle.yml │ │ │ └── script │ │ │ └── release │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Regex.podspec │ │ ├── Regex.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Regex-OSX.xcscheme │ │ │ └── Regex-iOS.xcscheme │ │ ├── Regex.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Regex │ │ ├── Foundation+Ranges.swift │ │ ├── Info.plist │ │ ├── MatchResult.swift │ │ ├── Regex.h │ │ └── Regex.swift │ │ └── RegexTests │ │ ├── Info.plist │ │ └── RegexSpec.swift ├── Regular.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Regular │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── 09-JSONCodable ├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Checkouts │ │ ├── Alamofire │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Alamofire.podspec │ │ ├── Alamofire.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Alamofire OSX.xcscheme │ │ │ │ ├── Alamofire iOS.xcscheme │ │ │ │ ├── Alamofire tvOS.xcscheme │ │ │ │ └── Alamofire watchOS.xcscheme │ │ ├── Alamofire.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Documentation │ │ │ ├── Alamofire 2.0 Migration Guide.md │ │ │ └── Alamofire 3.0 Migration Guide.md │ │ ├── Example │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── DetailViewController.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ │ └── Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Logo.png │ │ │ │ │ └── Logo@2x.png │ │ │ ├── Info.plist │ │ │ └── MasterViewController.swift │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Source │ │ │ ├── Alamofire.h │ │ │ ├── Alamofire.swift │ │ │ ├── Download.swift │ │ │ ├── Error.swift │ │ │ ├── Info-tvOS.plist │ │ │ ├── Info.plist │ │ │ ├── Manager.swift │ │ │ ├── MultipartFormData.swift │ │ │ ├── ParameterEncoding.swift │ │ │ ├── Request.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseSerialization.swift │ │ │ ├── Result.swift │ │ │ ├── ServerTrustPolicy.swift │ │ │ ├── Stream.swift │ │ │ ├── Upload.swift │ │ │ └── Validation.swift │ │ ├── Tests │ │ │ ├── AuthenticationTests.swift │ │ │ ├── BaseTestCase.swift │ │ │ ├── CacheTests.swift │ │ │ ├── DownloadTests.swift │ │ │ ├── Info.plist │ │ │ ├── ManagerTests.swift │ │ │ ├── MultipartFormDataTests.swift │ │ │ ├── NSURLSessionConfiguration+AlamofireTests.swift │ │ │ ├── ParameterEncodingTests.swift │ │ │ ├── RequestTests.swift │ │ │ ├── Resources │ │ │ │ ├── Certificates │ │ │ │ │ ├── alamofire.org │ │ │ │ │ │ ├── alamofire-root-ca.cer │ │ │ │ │ │ ├── alamofire-signing-ca1.cer │ │ │ │ │ │ ├── alamofire-signing-ca2.cer │ │ │ │ │ │ ├── expired.cer │ │ │ │ │ │ ├── missing-dns-name-and-uri.cer │ │ │ │ │ │ ├── multiple-dns-names.cer │ │ │ │ │ │ ├── signed-by-ca1.cer │ │ │ │ │ │ ├── signed-by-ca2.cer │ │ │ │ │ │ ├── test.alamofire.org.cer │ │ │ │ │ │ ├── valid-dns-name.cer │ │ │ │ │ │ ├── valid-uri.cer │ │ │ │ │ │ └── wildcard.alamofire.org.cer │ │ │ │ │ └── disig.sk │ │ │ │ │ │ ├── intermediate-ca-disig.cer │ │ │ │ │ │ ├── root-ca-disig.cer │ │ │ │ │ │ └── testssl-expire.disig.sk.cer │ │ │ │ └── Images │ │ │ │ │ ├── rainbow.jpg │ │ │ │ │ └── unicorn.png │ │ │ ├── ResponseSerializationTests.swift │ │ │ ├── ResponseTests.swift │ │ │ ├── ResultTests.swift │ │ │ ├── ServerTrustPolicyTests.swift │ │ │ ├── String+AlamofireTests.swift │ │ │ ├── TLSEvaluationTests.swift │ │ │ ├── URLProtocolTests.swift │ │ │ ├── UploadTests.swift │ │ │ └── ValidationTests.swift │ │ └── iOS Example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── iOS Example.xcscheme │ │ └── JSONCodable │ │ ├── .gitignore │ │ ├── JSONCodable.playground │ │ ├── Contents.swift │ │ ├── contents.xcplayground │ │ └── timeline.xctimeline │ │ ├── JSONCodable.podspec │ │ ├── JSONCodable.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── JSONCodable OSX.xcscheme │ │ │ └── JSONCodable iOS.xcscheme │ │ ├── JSONCodable.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── JSONCodable │ │ ├── JSONCodable.swift │ │ ├── JSONDecodable.swift │ │ ├── JSONEncodable.swift │ │ ├── JSONHelpers.swift │ │ ├── JSONString.swift │ │ └── JSONTransformer.swift │ │ ├── JSONCodableTests │ │ ├── Company.swift │ │ ├── EnumTests.swift │ │ ├── Food.swift │ │ ├── Fruit.swift │ │ ├── HelperTests.swift │ │ ├── ImageAsset.swift │ │ ├── Info.plist │ │ ├── RegularTests.swift │ │ ├── TransformerTests.swift │ │ └── User.swift │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Supporting Files │ │ ├── Info.plist │ │ └── JSONCodable.h │ │ ├── logo.png │ │ └── logo.sketch ├── JSON.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── JSON │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Post.swift │ ├── User.swift │ └── ViewController.swift ├── 10-Cartography ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Pirate.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Pirate.xcworkspace │ └── contents.xcworkspacedata ├── Pirate │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Image.imageset │ │ │ ├── Contents.json │ │ │ └── Untitled.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Cell.swift │ ├── Info.plist │ ├── ListViewController.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Cartography │ ├── Cartography │ │ ├── Align.swift │ │ ├── Coefficients.swift │ │ ├── Compound.swift │ │ ├── Constrain.swift │ │ ├── Constraint.swift │ │ ├── ConstraintGroup.swift │ │ ├── Context.swift │ │ ├── Dimension.swift │ │ ├── Distribute.swift │ │ ├── Edge.swift │ │ ├── Edges.swift │ │ ├── Expression.swift │ │ ├── Extensions.swift │ │ ├── LayoutProxy.swift │ │ ├── Point.swift │ │ ├── Priority.swift │ │ ├── Property.swift │ │ ├── Size.swift │ │ ├── View.swift │ │ └── ViewUtils.swift │ ├── LICENSE │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Cartography │ ├── Cartography-dummy.m │ ├── Cartography-prefix.pch │ ├── Cartography-umbrella.h │ ├── Cartography.modulemap │ ├── Cartography.xcconfig │ └── Info.plist │ └── Pods-Pirate │ ├── Info.plist │ ├── Pods-Pirate-acknowledgements.markdown │ ├── Pods-Pirate-acknowledgements.plist │ ├── Pods-Pirate-dummy.m │ ├── Pods-Pirate-frameworks.sh │ ├── Pods-Pirate-resources.sh │ ├── Pods-Pirate-umbrella.h │ ├── Pods-Pirate.debug.xcconfig │ ├── Pods-Pirate.modulemap │ └── Pods-Pirate.release.xcconfig ├── 11-SwiftGen ├── SwiftGenDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── gio.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── gio.xcuserdatad │ │ └── xcschemes │ │ ├── SwiftGenDemo.xcscheme │ │ └── xcschememanagement.plist └── SwiftGenDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Dog.imageset │ │ ├── Contents.json │ │ └── santa-dog1-300x269.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Images.swift │ ├── Info.plist │ ├── OtherDog.png │ ├── Storyboards.swift │ └── ViewController.swift ├── 12-Prephirences ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Perisomething.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Perisomething.xcworkspace │ └── contents.xcworkspacedata ├── Perisomething │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── Prephirences │ ├── LICENSE │ ├── Prephirences │ │ ├── DictionaryPreferences.swift │ │ ├── KeychainPreferences.swift │ │ ├── NSUbiquitousKeyValueStore+Prephirences.swift │ │ ├── NSUserDefaults+Prephirences.swift │ │ ├── PatternPreferences.swift │ │ ├── Plist.swift │ │ ├── Preference.swift │ │ ├── PreferencesOperators.swift │ │ ├── PreferencesType.swift │ │ └── Prephirences.swift │ ├── README.md │ └── logo.png │ └── Target Support Files │ ├── Pods-Perisomething │ ├── Info.plist │ ├── Pods-Perisomething-acknowledgements.markdown │ ├── Pods-Perisomething-acknowledgements.plist │ ├── Pods-Perisomething-dummy.m │ ├── Pods-Perisomething-frameworks.sh │ ├── Pods-Perisomething-resources.sh │ ├── Pods-Perisomething-umbrella.h │ ├── Pods-Perisomething.debug.xcconfig │ ├── Pods-Perisomething.modulemap │ └── Pods-Perisomething.release.xcconfig │ └── Prephirences │ ├── Info.plist │ ├── Prephirences-dummy.m │ ├── Prephirences-prefix.pch │ ├── Prephirences-umbrella.h │ ├── Prephirences.modulemap │ └── Prephirences.xcconfig ├── 13-PermissionScope ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Permission.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Permission.xcworkspace │ └── contents.xcworkspacedata ├── Permission │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Manifest.lock │ ├── PermissionScope │ ├── LICENSE │ ├── PermissionScope │ │ ├── Constants.swift │ │ ├── Extensions.swift │ │ ├── PermissionScope.swift │ │ ├── Permissions.swift │ │ └── Structs.swift │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── PermissionScope │ ├── Info.plist │ ├── PermissionScope-dummy.m │ ├── PermissionScope-prefix.pch │ ├── PermissionScope-umbrella.h │ ├── PermissionScope.modulemap │ └── PermissionScope.xcconfig │ └── Pods-Permission │ ├── Info.plist │ ├── Pods-Permission-acknowledgements.markdown │ ├── Pods-Permission-acknowledgements.plist │ ├── Pods-Permission-dummy.m │ ├── Pods-Permission-frameworks.sh │ ├── Pods-Permission-resources.sh │ ├── Pods-Permission-umbrella.h │ ├── Pods-Permission.debug.xcconfig │ ├── Pods-Permission.modulemap │ └── Pods-Permission.release.xcconfig ├── 14-Realm ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Build │ │ ├── Mac │ │ ├── Realm.framework │ │ │ ├── Headers │ │ │ │ ├── RLMArray.h │ │ │ │ ├── RLMCollection.h │ │ │ │ ├── RLMConstants.h │ │ │ │ ├── RLMDefines.h │ │ │ │ ├── RLMMigration.h │ │ │ │ ├── RLMObject.h │ │ │ │ ├── RLMObjectBase.h │ │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ │ ├── RLMObjectSchema.h │ │ │ │ ├── RLMPlatform.h │ │ │ │ ├── RLMProperty.h │ │ │ │ ├── RLMRealm.h │ │ │ │ ├── RLMRealmConfiguration.h │ │ │ │ ├── RLMRealm_Dynamic.h │ │ │ │ ├── RLMResults.h │ │ │ │ ├── RLMSchema.h │ │ │ │ └── Realm.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── PrivateHeaders │ │ │ │ ├── RLMAccessor.h │ │ │ │ ├── RLMArray_Private.h │ │ │ │ ├── RLMListBase.h │ │ │ │ ├── RLMMigration_Private.h │ │ │ │ ├── RLMObjectSchema_Private.h │ │ │ │ ├── RLMObjectStore.h │ │ │ │ ├── RLMObject_Private.h │ │ │ │ ├── RLMOptionalBase.h │ │ │ │ ├── RLMProperty_Private.h │ │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ │ ├── RLMRealmUtil.h │ │ │ │ ├── RLMRealm_Private.h │ │ │ │ ├── RLMResults_Private.h │ │ │ │ └── RLMSchema_Private.h │ │ │ ├── Realm │ │ │ ├── Resources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── RLMArray.h │ │ │ │ │ ├── RLMCollection.h │ │ │ │ │ ├── RLMConstants.h │ │ │ │ │ ├── RLMDefines.h │ │ │ │ │ ├── RLMMigration.h │ │ │ │ │ ├── RLMObject.h │ │ │ │ │ ├── RLMObjectBase.h │ │ │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ │ │ ├── RLMObjectSchema.h │ │ │ │ │ ├── RLMPlatform.h │ │ │ │ │ ├── RLMProperty.h │ │ │ │ │ ├── RLMRealm.h │ │ │ │ │ ├── RLMRealmConfiguration.h │ │ │ │ │ ├── RLMRealm_Dynamic.h │ │ │ │ │ ├── RLMResults.h │ │ │ │ │ ├── RLMSchema.h │ │ │ │ │ └── Realm.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── PrivateHeaders │ │ │ │ │ ├── RLMAccessor.h │ │ │ │ │ ├── RLMArray_Private.h │ │ │ │ │ ├── RLMListBase.h │ │ │ │ │ ├── RLMMigration_Private.h │ │ │ │ │ ├── RLMObjectSchema_Private.h │ │ │ │ │ ├── RLMObjectStore.h │ │ │ │ │ ├── RLMObject_Private.h │ │ │ │ │ ├── RLMOptionalBase.h │ │ │ │ │ ├── RLMProperty_Private.h │ │ │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ │ │ ├── RLMRealmUtil.h │ │ │ │ │ ├── RLMRealm_Private.h │ │ │ │ │ ├── RLMResults_Private.h │ │ │ │ │ └── RLMSchema_Private.h │ │ │ │ ├── Realm │ │ │ │ └── Resources │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── RLMArray.h │ │ │ │ ├── RLMCollection.h │ │ │ │ ├── RLMConstants.h │ │ │ │ ├── RLMDefines.h │ │ │ │ ├── RLMMigration.h │ │ │ │ ├── RLMObject.h │ │ │ │ ├── RLMObjectBase.h │ │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ │ ├── RLMObjectSchema.h │ │ │ │ ├── RLMPlatform.h │ │ │ │ ├── RLMProperty.h │ │ │ │ ├── RLMRealm.h │ │ │ │ ├── RLMRealmConfiguration.h │ │ │ │ ├── RLMRealm_Dynamic.h │ │ │ │ ├── RLMResults.h │ │ │ │ ├── RLMSchema.h │ │ │ │ └── Realm.h │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ ├── PrivateHeaders │ │ │ │ ├── RLMAccessor.h │ │ │ │ ├── RLMArray_Private.h │ │ │ │ ├── RLMListBase.h │ │ │ │ ├── RLMMigration_Private.h │ │ │ │ ├── RLMObjectSchema_Private.h │ │ │ │ ├── RLMObjectStore.h │ │ │ │ ├── RLMObject_Private.h │ │ │ │ ├── RLMOptionalBase.h │ │ │ │ ├── RLMProperty_Private.h │ │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ │ ├── RLMRealmUtil.h │ │ │ │ ├── RLMRealm_Private.h │ │ │ │ ├── RLMResults_Private.h │ │ │ │ └── RLMSchema_Private.h │ │ │ │ ├── Realm │ │ │ │ └── Resources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE │ │ └── RealmSwift.framework │ │ │ ├── Headers │ │ │ └── RealmSwift-Swift.h │ │ │ ├── Modules │ │ │ ├── RealmSwift.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── RealmSwift │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── RealmSwift-Swift.h │ │ │ ├── Modules │ │ │ │ ├── RealmSwift.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── RealmSwift │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ │ │ ├── Headers │ │ │ └── RealmSwift-Swift.h │ │ │ ├── Modules │ │ │ ├── RealmSwift.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── RealmSwift │ │ │ └── Resources │ │ │ └── Info.plist │ │ ├── iOS │ │ ├── 2A026F7D-3D77-3C58-8E35-2CBCDDFAA7B1.bcsymbolmap │ │ ├── 7B3F1939-0703-3FB7-A949-C86E017B2778.bcsymbolmap │ │ ├── A0807789-8D56-39AA-ABA8-6BE6DFDAA509.bcsymbolmap │ │ ├── F0D65631-626A-33D5-A094-6E036EEAE171.bcsymbolmap │ │ ├── Realm.framework │ │ │ ├── 2A026F7D-3D77-3C58-8E35-2CBCDDFAA7B1.bcsymbolmap │ │ │ ├── A0807789-8D56-39AA-ABA8-6BE6DFDAA509.bcsymbolmap │ │ │ ├── Headers │ │ │ │ ├── RLMArray.h │ │ │ │ ├── RLMCollection.h │ │ │ │ ├── RLMConstants.h │ │ │ │ ├── RLMDefines.h │ │ │ │ ├── RLMMigration.h │ │ │ │ ├── RLMObject.h │ │ │ │ ├── RLMObjectBase.h │ │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ │ ├── RLMObjectSchema.h │ │ │ │ ├── RLMPlatform.h │ │ │ │ ├── RLMProperty.h │ │ │ │ ├── RLMRealm.h │ │ │ │ ├── RLMRealmConfiguration.h │ │ │ │ ├── RLMRealm_Dynamic.h │ │ │ │ ├── RLMResults.h │ │ │ │ ├── RLMSchema.h │ │ │ │ └── Realm.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── PrivateHeaders │ │ │ │ ├── RLMAccessor.h │ │ │ │ ├── RLMArray_Private.h │ │ │ │ ├── RLMListBase.h │ │ │ │ ├── RLMMigration_Private.h │ │ │ │ ├── RLMObjectSchema_Private.h │ │ │ │ ├── RLMObjectStore.h │ │ │ │ ├── RLMObject_Private.h │ │ │ │ ├── RLMOptionalBase.h │ │ │ │ ├── RLMProperty_Private.h │ │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ │ ├── RLMRealmUtil.h │ │ │ │ ├── RLMRealm_Private.h │ │ │ │ ├── RLMResults_Private.h │ │ │ │ └── RLMSchema_Private.h │ │ │ ├── Realm │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── strip-frameworks.sh │ │ └── RealmSwift.framework │ │ │ ├── 7B3F1939-0703-3FB7-A949-C86E017B2778.bcsymbolmap │ │ │ ├── F0D65631-626A-33D5-A094-6E036EEAE171.bcsymbolmap │ │ │ ├── Headers │ │ │ └── RealmSwift-Swift.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── RealmSwift.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── RealmSwift │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── watchOS │ │ ├── 65A59D18-78BA-39EC-A074-53BC83982454.bcsymbolmap │ │ ├── E09D2390-37C9-314C-B104-F2D0869E0C62.bcsymbolmap │ │ ├── Realm.framework │ │ ├── E09D2390-37C9-314C-B104-F2D0869E0C62.bcsymbolmap │ │ ├── Headers │ │ │ ├── RLMArray.h │ │ │ ├── RLMCollection.h │ │ │ ├── RLMConstants.h │ │ │ ├── RLMDefines.h │ │ │ ├── RLMMigration.h │ │ │ ├── RLMObject.h │ │ │ ├── RLMObjectBase.h │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ ├── RLMObjectSchema.h │ │ │ ├── RLMPlatform.h │ │ │ ├── RLMProperty.h │ │ │ ├── RLMRealm.h │ │ │ ├── RLMRealmConfiguration.h │ │ │ ├── RLMRealm_Dynamic.h │ │ │ ├── RLMResults.h │ │ │ ├── RLMSchema.h │ │ │ └── Realm.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ ├── RLMAccessor.h │ │ │ ├── RLMArray_Private.h │ │ │ ├── RLMListBase.h │ │ │ ├── RLMMigration_Private.h │ │ │ ├── RLMObjectSchema_Private.h │ │ │ ├── RLMObjectStore.h │ │ │ ├── RLMObject_Private.h │ │ │ ├── RLMOptionalBase.h │ │ │ ├── RLMProperty_Private.h │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ ├── RLMRealmUtil.h │ │ │ ├── RLMRealm_Private.h │ │ │ ├── RLMResults_Private.h │ │ │ └── RLMSchema_Private.h │ │ ├── Realm │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ └── strip-frameworks.sh │ │ └── RealmSwift.framework │ │ ├── 65A59D18-78BA-39EC-A074-53BC83982454.bcsymbolmap │ │ ├── Headers │ │ └── RealmSwift-Swift.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── RealmSwift.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ └── i386.swiftmodule │ │ └── module.modulemap │ │ ├── RealmSwift │ │ └── _CodeSignature │ │ └── CodeResources ├── Kingdom.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── gio.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── gio.xcuserdatad │ │ └── xcschemes │ │ ├── Kingdom.xcscheme │ │ └── xcschememanagement.plist └── Kingdom │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Post.swift │ ├── User.swift │ └── ViewController.swift ├── 15-Eureka ├── .gitignore ├── Galileo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Galileo.xcworkspace │ └── contents.xcworkspacedata ├── Galileo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock └── Pods │ ├── Eureka │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Cells.swift │ │ ├── Controllers.swift │ │ ├── Core.swift │ │ ├── Helpers.swift │ │ └── Rows.swift │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Eureka │ ├── Eureka-dummy.m │ ├── Eureka-prefix.pch │ ├── Eureka-umbrella.h │ ├── Eureka.modulemap │ ├── Eureka.xcconfig │ └── Info.plist │ └── Pods-Galileo │ ├── Info.plist │ ├── Pods-Galileo-acknowledgements.markdown │ ├── Pods-Galileo-acknowledgements.plist │ ├── Pods-Galileo-dummy.m │ ├── Pods-Galileo-frameworks.sh │ ├── Pods-Galileo-resources.sh │ ├── Pods-Galileo-umbrella.h │ ├── Pods-Galileo.debug.xcconfig │ ├── Pods-Galileo.modulemap │ └── Pods-Galileo.release.xcconfig ├── 16-KeychainAccess ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Build │ │ ├── Mac │ │ ├── KeychainAccess.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── KeychainAccess │ │ └── KeychainAccess.framework │ │ │ ├── Headers │ │ │ ├── KeychainAccess │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── KeychainAccess-Swift.h │ │ │ │ └── KeychainAccess.h │ │ │ ├── KeychainAccess │ │ │ ├── Modules │ │ │ │ ├── KeychainAccess.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ │ ├── iOS │ │ ├── 8614581B-2770-35D9-9CE6-1BEEF935D4BA.bcsymbolmap │ │ ├── BF7056F7-FC13-3884-B355-A1627E2CDDCB.bcsymbolmap │ │ ├── KeychainAccess.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── KeychainAccess │ │ └── KeychainAccess.framework │ │ │ ├── Headers │ │ │ ├── KeychainAccess-Swift.h │ │ │ └── KeychainAccess.h │ │ │ ├── Info.plist │ │ │ ├── KeychainAccess │ │ │ └── Modules │ │ │ ├── KeychainAccess.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ ├── i386.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── tvOS │ │ ├── 64AE5479-6E8A-36E1-BC37-CF3026B67E3E.bcsymbolmap │ │ ├── KeychainAccess.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── KeychainAccess │ │ └── KeychainAccess.framework │ │ │ ├── Headers │ │ │ ├── KeychainAccess-Swift.h │ │ │ └── KeychainAccess.h │ │ │ ├── Info.plist │ │ │ ├── KeychainAccess │ │ │ └── Modules │ │ │ ├── KeychainAccess.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── watchOS │ │ ├── D8BBFECF-C27D-3E5E-A9E9-2E710171E0DD.bcsymbolmap │ │ ├── KeychainAccess.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── KeychainAccess │ │ └── KeychainAccess.framework │ │ ├── Headers │ │ ├── KeychainAccess-Swift.h │ │ └── KeychainAccess.h │ │ ├── Info.plist │ │ ├── KeychainAccess │ │ └── Modules │ │ ├── KeychainAccess.swiftmodule │ │ ├── arm.swiftdoc │ │ ├── arm.swiftmodule │ │ ├── i386.swiftdoc │ │ └── i386.swiftmodule │ │ └── module.modulemap ├── Keychain.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── gio.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── gio.xcuserdatad │ │ └── xcschemes │ │ ├── Keychain.xcscheme │ │ └── xcschememanagement.plist └── Keychain │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── 17-ios-chart ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── PiesAndBars.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── PiesAndBars.xcworkspace │ └── contents.xcworkspacedata ├── PiesAndBars │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── PieViewController.swift │ ├── PizzaSales.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Charts │ ├── Charts │ │ └── Classes │ │ │ ├── Animation │ │ │ ├── ChartAnimationEasing.swift │ │ │ └── ChartAnimator.swift │ │ │ ├── Charts │ │ │ ├── BarChartView.swift │ │ │ ├── BarLineChartViewBase.swift │ │ │ ├── BubbleChartView.swift │ │ │ ├── CandleStickChartView.swift │ │ │ ├── ChartViewBase.swift │ │ │ ├── CombinedChartView.swift │ │ │ ├── HorizontalBarChartView.swift │ │ │ ├── LineChartView.swift │ │ │ ├── PieChartView.swift │ │ │ ├── PieRadarChartViewBase.swift │ │ │ ├── RadarChartView.swift │ │ │ └── ScatterChartView.swift │ │ │ ├── Components │ │ │ ├── ChartAxisBase.swift │ │ │ ├── ChartComponentBase.swift │ │ │ ├── ChartLegend.swift │ │ │ ├── ChartLimitLine.swift │ │ │ ├── ChartMarker.swift │ │ │ ├── ChartXAxis.swift │ │ │ └── ChartYAxis.swift │ │ │ ├── Data │ │ │ ├── BarChartData.swift │ │ │ ├── BarChartDataEntry.swift │ │ │ ├── BarChartDataSet.swift │ │ │ ├── BarLineScatterCandleBubbleChartData.swift │ │ │ ├── BarLineScatterCandleBubbleChartDataSet.swift │ │ │ ├── BubbleChartData.swift │ │ │ ├── BubbleChartDataEntry.swift │ │ │ ├── BubbleChartDataSet.swift │ │ │ ├── CandleChartData.swift │ │ │ ├── CandleChartDataEntry.swift │ │ │ ├── CandleChartDataSet.swift │ │ │ ├── ChartData.swift │ │ │ ├── ChartDataEntry.swift │ │ │ ├── ChartDataSet.swift │ │ │ ├── CombinedChartData.swift │ │ │ ├── LineChartData.swift │ │ │ ├── LineChartDataSet.swift │ │ │ ├── LineRadarChartDataSet.swift │ │ │ ├── LineScatterCandleChartDataSet.swift │ │ │ ├── PieChartData.swift │ │ │ ├── PieChartDataSet.swift │ │ │ ├── RadarChartData.swift │ │ │ ├── RadarChartDataSet.swift │ │ │ ├── ScatterChartData.swift │ │ │ └── ScatterChartDataSet.swift │ │ │ ├── Filters │ │ │ ├── ChartDataApproximatorFilter.swift │ │ │ └── ChartDataBaseFilter.swift │ │ │ ├── Formatters │ │ │ ├── ChartDefaultXAxisValueFormatter.swift │ │ │ ├── ChartFillFormatter.swift │ │ │ └── ChartXAxisValueFormatter.swift │ │ │ ├── Highlight │ │ │ ├── BarChartHighlighter.swift │ │ │ ├── ChartHighlight.swift │ │ │ ├── ChartHighlighter.swift │ │ │ ├── ChartRange.swift │ │ │ ├── CombinedHighlighter.swift │ │ │ └── HorizontalBarChartHighlighter.swift │ │ │ ├── Interfaces │ │ │ ├── BarChartDataProvider.swift │ │ │ ├── BarLineScatterCandleBubbleChartDataProvider.swift │ │ │ ├── BubbleChartDataProvider.swift │ │ │ ├── CandleChartDataProvider.swift │ │ │ ├── ChartDataProvider.swift │ │ │ ├── LineChartDataProvider.swift │ │ │ └── ScatterChartDataProvider.swift │ │ │ ├── Renderers │ │ │ ├── BarChartRenderer.swift │ │ │ ├── BubbleChartRenderer.swift │ │ │ ├── CandleStickChartRenderer.swift │ │ │ ├── ChartAxisRendererBase.swift │ │ │ ├── ChartDataRendererBase.swift │ │ │ ├── ChartLegendRenderer.swift │ │ │ ├── ChartRendererBase.swift │ │ │ ├── ChartXAxisRenderer.swift │ │ │ ├── ChartXAxisRendererBarChart.swift │ │ │ ├── ChartXAxisRendererHorizontalBarChart.swift │ │ │ ├── ChartXAxisRendererRadarChart.swift │ │ │ ├── ChartYAxisRenderer.swift │ │ │ ├── ChartYAxisRendererHorizontalBarChart.swift │ │ │ ├── ChartYAxisRendererRadarChart.swift │ │ │ ├── CombinedChartRenderer.swift │ │ │ ├── HorizontalBarChartRenderer.swift │ │ │ ├── LineChartRenderer.swift │ │ │ ├── LineScatterCandleRadarChartRenderer.swift │ │ │ ├── PieChartRenderer.swift │ │ │ ├── RadarChartRenderer.swift │ │ │ └── ScatterChartRenderer.swift │ │ │ └── Utils │ │ │ ├── ChartColorTemplates.swift │ │ │ ├── ChartSelectionDetail.swift │ │ │ ├── ChartTransformer.swift │ │ │ ├── ChartTransformerHorizontalBarChart.swift │ │ │ ├── ChartUtils.swift │ │ │ └── ChartViewPortHandler.swift │ ├── LICENSE │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Charts │ ├── Charts-dummy.m │ ├── Charts-prefix.pch │ ├── Charts-umbrella.h │ ├── Charts.modulemap │ ├── Charts.xcconfig │ └── Info.plist │ └── Pods-PiesAndBars │ ├── Info.plist │ ├── Pods-PiesAndBars-acknowledgements.markdown │ ├── Pods-PiesAndBars-acknowledgements.plist │ ├── Pods-PiesAndBars-dummy.m │ ├── Pods-PiesAndBars-frameworks.sh │ ├── Pods-PiesAndBars-resources.sh │ ├── Pods-PiesAndBars-umbrella.h │ ├── Pods-PiesAndBars.debug.xcconfig │ ├── Pods-PiesAndBars.modulemap │ └── Pods-PiesAndBars.release.xcconfig ├── 18-OHHTTPStubs ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── Carthage │ ├── Build │ │ ├── Mac │ │ │ ├── Alamofire.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Alamofire │ │ │ ├── Alamofire.framework │ │ │ │ ├── Alamofire │ │ │ │ ├── Headers │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ └── Alamofire.h │ │ │ │ ├── Modules │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Alamofire │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ │ └── Alamofire.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ │ │ ├── Alamofire │ │ │ │ │ ├── Headers │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ └── Alamofire.h │ │ │ │ │ ├── Modules │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ ├── JSONCodable.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── JSONCodable │ │ │ ├── JSONCodable.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── JSONCodable-Swift.h │ │ │ │ │ └── JSONCodable.h │ │ │ │ ├── JSONCodable │ │ │ │ ├── Modules │ │ │ │ │ ├── JSONCodable.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── JSONCodable-Swift.h │ │ │ │ │ │ └── JSONCodable.h │ │ │ │ │ ├── JSONCodable │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── JSONCodable.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ ├── JSONCodable-Swift.h │ │ │ │ │ └── JSONCodable.h │ │ │ │ │ ├── JSONCodable │ │ │ │ │ ├── Modules │ │ │ │ │ ├── JSONCodable.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ ├── Nimble.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Nimble │ │ │ ├── Nimble.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ ├── Nimble-Swift.h │ │ │ │ │ └── Nimble.h │ │ │ │ ├── Modules │ │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Nimble │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ ├── Nimble-Swift.h │ │ │ │ │ │ └── Nimble.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── Nimble │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ ├── Nimble-Swift.h │ │ │ │ │ └── Nimble.h │ │ │ │ │ ├── Modules │ │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── Nimble │ │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ ├── OHHTTPStubs.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── OHHTTPStubs │ │ │ ├── OHHTTPStubs.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── Compatibility.h │ │ │ │ │ ├── OHHTTPStubs+Mocktail.h │ │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ │ ├── OHHTTPStubsResponse+HTTPMessage.h │ │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ │ ├── OHHTTPStubsResponse.h │ │ │ │ │ ├── OHHTTPStubsUmbrella.h │ │ │ │ │ └── OHPathHelpers.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OHHTTPStubs │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── Compatibility.h │ │ │ │ │ │ ├── OHHTTPStubs+Mocktail.h │ │ │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ │ │ ├── OHHTTPStubsResponse+HTTPMessage.h │ │ │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ │ │ ├── OHHTTPStubsResponse.h │ │ │ │ │ │ ├── OHHTTPStubsUmbrella.h │ │ │ │ │ │ └── OHPathHelpers.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── OHHTTPStubs │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ ├── Compatibility.h │ │ │ │ │ ├── OHHTTPStubs+Mocktail.h │ │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ │ ├── OHHTTPStubsResponse+HTTPMessage.h │ │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ │ ├── OHHTTPStubsResponse.h │ │ │ │ │ ├── OHHTTPStubsUmbrella.h │ │ │ │ │ └── OHPathHelpers.h │ │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── OHHTTPStubs │ │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ ├── Quick.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Quick │ │ │ └── Quick.framework │ │ │ │ ├── Headers │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── Quick-Swift.h │ │ │ │ ├── Quick.h │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickSpec.h │ │ │ │ ├── Modules │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ │ ├── Quick │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── QCKDSL.h │ │ │ │ │ ├── Quick-Swift.h │ │ │ │ │ ├── Quick.h │ │ │ │ │ ├── QuickConfiguration.h │ │ │ │ │ └── QuickSpec.h │ │ │ │ ├── Modules │ │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Quick │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── Quick-Swift.h │ │ │ │ ├── Quick.h │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickSpec.h │ │ │ │ ├── Modules │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ │ ├── Quick │ │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ ├── iOS │ │ │ ├── 1C5441D1-454E-37B7-BA20-73176B45BD42.bcsymbolmap │ │ │ ├── 7F340D40-13A2-3817-8576-0553B34A5B22.bcsymbolmap │ │ │ ├── 867B36DA-4EE8-32B0-8264-D6E08989C530.bcsymbolmap │ │ │ ├── Alamofire.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Alamofire │ │ │ ├── Alamofire.framework │ │ │ │ ├── Alamofire │ │ │ │ ├── Headers │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ └── Alamofire.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ ├── arm.swiftdoc │ │ │ │ │ │ ├── arm.swiftmodule │ │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ │ ├── i386.swiftdoc │ │ │ │ │ │ ├── i386.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── D9A707C0-61DF-3CF0-A363-3CA9C350B647.bcsymbolmap │ │ │ ├── F876FAF8-BB14-3C66-B358-0A79AE10E291.bcsymbolmap │ │ │ ├── FB710E53-DE69-326E-9177-E37A3B65E003.bcsymbolmap │ │ │ ├── JSONCodable.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── JSONCodable │ │ │ ├── JSONCodable.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── JSONCodable-Swift.h │ │ │ │ │ └── JSONCodable.h │ │ │ │ ├── Info.plist │ │ │ │ ├── JSONCodable │ │ │ │ ├── Modules │ │ │ │ │ ├── JSONCodable.swiftmodule │ │ │ │ │ │ ├── arm.swiftdoc │ │ │ │ │ │ ├── arm.swiftmodule │ │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ │ ├── i386.swiftdoc │ │ │ │ │ │ ├── i386.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Nimble.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Nimble │ │ │ ├── Nimble.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ ├── Nimble-Swift.h │ │ │ │ │ └── Nimble.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ │ ├── arm.swiftdoc │ │ │ │ │ │ ├── arm.swiftmodule │ │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ │ ├── i386.swiftdoc │ │ │ │ │ │ ├── i386.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Nimble │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── OHHTTPStubs.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── OHHTTPStubs │ │ │ ├── OHHTTPStubs.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── Compatibility.h │ │ │ │ │ ├── OHHTTPStubs+Mocktail.h │ │ │ │ │ ├── OHHTTPStubs-Swift.h │ │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ │ ├── OHHTTPStubsResponse+HTTPMessage.h │ │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ │ ├── OHHTTPStubsResponse.h │ │ │ │ │ ├── OHHTTPStubsUmbrella.h │ │ │ │ │ └── OHPathHelpers.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ ├── OHHTTPStubs.swiftmodule │ │ │ │ │ │ ├── arm.swiftdoc │ │ │ │ │ │ ├── arm.swiftmodule │ │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ │ ├── i386.swiftdoc │ │ │ │ │ │ ├── i386.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OHHTTPStubs │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Quick.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Quick │ │ │ └── Quick.framework │ │ │ │ ├── Headers │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── Quick-Swift.h │ │ │ │ ├── Quick.h │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickSpec.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ ├── arm.swiftdoc │ │ │ │ │ ├── arm.swiftmodule │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ ├── i386.swiftdoc │ │ │ │ │ ├── i386.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ │ ├── Quick │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── tvOS │ │ │ ├── 57ED2C0D-E591-3ECF-A3B4-DE4D6FE65097.bcsymbolmap │ │ │ ├── Alamofire.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Alamofire │ │ │ ├── Alamofire.framework │ │ │ │ ├── Alamofire │ │ │ │ ├── Headers │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ └── Alamofire.h │ │ │ │ ├── Info.plist │ │ │ │ └── Modules │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ ├── DFE5F4CD-908F-3898-BF4C-3901F5400B0F.bcsymbolmap │ │ │ ├── Nimble.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Nimble │ │ │ ├── Nimble.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ ├── Nimble-Swift.h │ │ │ │ │ └── Nimble.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ └── Nimble │ │ │ ├── OHHTTPStubs.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── OHHTTPStubs │ │ │ ├── OHHTTPStubs.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── Compatibility.h │ │ │ │ │ ├── OHHTTPStubs+Mocktail.h │ │ │ │ │ ├── OHHTTPStubs-Swift.h │ │ │ │ │ ├── OHHTTPStubs.h │ │ │ │ │ ├── OHHTTPStubsResponse+HTTPMessage.h │ │ │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ │ │ ├── OHHTTPStubsResponse.h │ │ │ │ │ ├── OHHTTPStubsUmbrella.h │ │ │ │ │ └── OHPathHelpers.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ ├── OHHTTPStubs.swiftmodule │ │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ │ ├── arm64.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ └── OHHTTPStubs │ │ │ ├── Quick.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── Quick │ │ │ └── Quick.framework │ │ │ │ ├── Headers │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── Quick-Swift.h │ │ │ │ ├── Quick.h │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickSpec.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ │ └── Quick │ │ └── watchOS │ │ │ ├── 27F2E859-A7D4-318F-B5F7-E4221141751C.bcsymbolmap │ │ │ ├── Alamofire.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Alamofire │ │ │ └── Alamofire.framework │ │ │ ├── Alamofire │ │ │ ├── Headers │ │ │ ├── Alamofire-Swift.h │ │ │ └── Alamofire.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── Alamofire.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ └── i386.swiftmodule │ │ │ └── module.modulemap │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── Checkouts │ │ ├── Alamofire │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Alamofire.podspec │ │ ├── Alamofire.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Alamofire OSX.xcscheme │ │ │ │ ├── Alamofire iOS.xcscheme │ │ │ │ ├── Alamofire tvOS.xcscheme │ │ │ │ └── Alamofire watchOS.xcscheme │ │ ├── Alamofire.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Documentation │ │ │ ├── Alamofire 2.0 Migration Guide.md │ │ │ └── Alamofire 3.0 Migration Guide.md │ │ ├── Example │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── DetailViewController.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ │ └── Logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Logo.png │ │ │ │ │ └── Logo@2x.png │ │ │ ├── Info.plist │ │ │ └── MasterViewController.swift │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Source │ │ │ ├── Alamofire.h │ │ │ ├── Alamofire.swift │ │ │ ├── Download.swift │ │ │ ├── Error.swift │ │ │ ├── Info-tvOS.plist │ │ │ ├── Info.plist │ │ │ ├── Manager.swift │ │ │ ├── MultipartFormData.swift │ │ │ ├── ParameterEncoding.swift │ │ │ ├── Request.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseSerialization.swift │ │ │ ├── Result.swift │ │ │ ├── ServerTrustPolicy.swift │ │ │ ├── Stream.swift │ │ │ ├── Upload.swift │ │ │ └── Validation.swift │ │ ├── Tests │ │ │ ├── AuthenticationTests.swift │ │ │ ├── BaseTestCase.swift │ │ │ ├── CacheTests.swift │ │ │ ├── DownloadTests.swift │ │ │ ├── Info.plist │ │ │ ├── ManagerTests.swift │ │ │ ├── MultipartFormDataTests.swift │ │ │ ├── NSURLSessionConfiguration+AlamofireTests.swift │ │ │ ├── ParameterEncodingTests.swift │ │ │ ├── RequestTests.swift │ │ │ ├── Resources │ │ │ │ ├── Certificates │ │ │ │ │ ├── alamofire.org │ │ │ │ │ │ ├── alamofire-root-ca.cer │ │ │ │ │ │ ├── alamofire-signing-ca1.cer │ │ │ │ │ │ ├── alamofire-signing-ca2.cer │ │ │ │ │ │ ├── expired.cer │ │ │ │ │ │ ├── missing-dns-name-and-uri.cer │ │ │ │ │ │ ├── multiple-dns-names.cer │ │ │ │ │ │ ├── signed-by-ca1.cer │ │ │ │ │ │ ├── signed-by-ca2.cer │ │ │ │ │ │ ├── test.alamofire.org.cer │ │ │ │ │ │ ├── valid-dns-name.cer │ │ │ │ │ │ ├── valid-uri.cer │ │ │ │ │ │ └── wildcard.alamofire.org.cer │ │ │ │ │ └── disig.sk │ │ │ │ │ │ ├── intermediate-ca-disig.cer │ │ │ │ │ │ ├── root-ca-disig.cer │ │ │ │ │ │ └── testssl-expire.disig.sk.cer │ │ │ │ └── Images │ │ │ │ │ ├── rainbow.jpg │ │ │ │ │ └── unicorn.png │ │ │ ├── ResponseSerializationTests.swift │ │ │ ├── ResponseTests.swift │ │ │ ├── ResultTests.swift │ │ │ ├── ServerTrustPolicyTests.swift │ │ │ ├── String+AlamofireTests.swift │ │ │ ├── TLSEvaluationTests.swift │ │ │ ├── URLProtocolTests.swift │ │ │ ├── UploadTests.swift │ │ │ └── ValidationTests.swift │ │ └── iOS Example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── iOS Example.xcscheme │ │ └── JSONCodable │ │ ├── .gitignore │ │ ├── JSONCodable.playground │ │ ├── Contents.swift │ │ ├── contents.xcplayground │ │ └── timeline.xctimeline │ │ ├── JSONCodable.podspec │ │ ├── JSONCodable.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── JSONCodable OSX.xcscheme │ │ │ └── JSONCodable iOS.xcscheme │ │ ├── JSONCodable.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── JSONCodable │ │ ├── JSONCodable.swift │ │ ├── JSONDecodable.swift │ │ ├── JSONEncodable.swift │ │ ├── JSONHelpers.swift │ │ ├── JSONString.swift │ │ └── JSONTransformer.swift │ │ ├── JSONCodableTests │ │ ├── Company.swift │ │ ├── EnumTests.swift │ │ ├── Food.swift │ │ ├── Fruit.swift │ │ ├── HelperTests.swift │ │ ├── ImageAsset.swift │ │ ├── Info.plist │ │ ├── RegularTests.swift │ │ ├── TransformerTests.swift │ │ └── User.swift │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Supporting Files │ │ ├── Info.plist │ │ └── JSONCodable.h │ │ ├── logo.png │ │ └── logo.sketch ├── HTTPStubs.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── gio.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── gio.xcuserdatad │ │ └── xcschemes │ │ ├── HTTPStubs.xcscheme │ │ └── xcschememanagement.plist ├── HTTPStubs │ ├── APIClient.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Post.swift │ ├── User.swift │ └── ViewController.swift └── HTTPStubsTests │ ├── APIClientSpec.swift │ ├── HTTPStubsTests-Bridging-Header.h │ ├── Info.plist │ └── success_response.json ├── 19-SDWebImage ├── Cartfile ├── Cartfile.resolved ├── Carthage │ ├── Build │ │ └── iOS │ │ │ ├── 779F743D-BE7E-349C-AB22-03962B8575A6.bcsymbolmap │ │ │ ├── AC0C9359-E5F4-3BE0-AFB6-6517B288112F.bcsymbolmap │ │ │ ├── WebImage.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── WebImage │ │ │ └── WebImage.framework │ │ │ ├── Headers │ │ │ ├── MKAnnotationView+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+WebP.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── WebImage.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── WebImage │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── Checkouts │ │ └── SDWebImage │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── Examples │ │ ├── CustomPathImages │ │ │ └── 4ad9ae8eabfec60b40bf48f0bfc2d120 │ │ ├── Default-568h@2x.png │ │ ├── SDWebImage Demo.xcodeproj │ │ │ └── project.pbxproj │ │ └── SDWebImage Demo │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DetailViewController.h │ │ │ ├── DetailViewController.m │ │ │ ├── MasterViewController.h │ │ │ ├── MasterViewController.m │ │ │ ├── SDWebImage Demo-Info.plist │ │ │ ├── SDWebImage Demo-Prefix.pch │ │ │ ├── en.lproj │ │ │ ├── DetailViewController.xib │ │ │ └── MasterViewController.xib │ │ │ ├── main.m │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SDWebImage.podspec │ │ ├── SDWebImage.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── WebImage.xcscheme │ │ ├── SDWebImage.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── SDWebImage Demo.xcscheme │ │ │ ├── SDWebImage+MKAnnotation.xcscheme │ │ │ ├── SDWebImage+WebP.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ ├── SDWebImageFramework.xcscheme │ │ │ ├── Tests.xcscheme │ │ │ └── WebImage.xcscheme │ │ ├── SDWebImage │ │ ├── MKAnnotationView+WebCache.h │ │ ├── MKAnnotationView+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImage+WebP.h │ │ ├── UIImage+WebP.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ │ ├── Tests │ │ ├── Podfile │ │ ├── SDWebImage Tests.xcodeproj │ │ │ └── project.pbxproj │ │ └── Tests │ │ │ ├── SDImageCacheTests.m │ │ │ ├── SDWebImageManagerTests.m │ │ │ ├── Tests-Info.plist │ │ │ ├── Tests-Prefix.pch │ │ │ ├── UIImageMultiFormatTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── Vendors │ │ └── libwebp │ │ │ ├── AUTHORS │ │ │ ├── Android.mk │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.vc │ │ │ ├── NEWS │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── README.mux │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ ├── doc │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── template.html │ │ │ ├── webp-container-spec.txt │ │ │ └── webp-lossless-bitstream-spec.txt │ │ │ ├── examples │ │ │ ├── Android.mk │ │ │ ├── Makefile.am │ │ │ ├── cwebp.c │ │ │ ├── dwebp.c │ │ │ ├── example_util.c │ │ │ ├── example_util.h │ │ │ ├── gif2webp.c │ │ │ ├── gif2webp_util.c │ │ │ ├── gif2webp_util.h │ │ │ ├── jpegdec.c │ │ │ ├── jpegdec.h │ │ │ ├── metadata.c │ │ │ ├── metadata.h │ │ │ ├── pngdec.c │ │ │ ├── pngdec.h │ │ │ ├── stopwatch.h │ │ │ ├── test.webp │ │ │ ├── test_ref.ppm │ │ │ ├── tiffdec.c │ │ │ ├── tiffdec.h │ │ │ ├── vwebp.c │ │ │ ├── webpdec.c │ │ │ ├── webpdec.h │ │ │ ├── webpmux.c │ │ │ ├── wicdec.c │ │ │ └── wicdec.h │ │ │ ├── iosbuild.sh │ │ │ ├── m4 │ │ │ └── ax_pthread.m4 │ │ │ ├── makefile.unix │ │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── cwebp.1 │ │ │ ├── dwebp.1 │ │ │ ├── gif2webp.1 │ │ │ ├── vwebp.1 │ │ │ └── webpmux.1 │ │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── dec │ │ │ │ ├── Makefile.am │ │ │ │ ├── alpha.c │ │ │ │ ├── alphai.h │ │ │ │ ├── buffer.c │ │ │ │ ├── decode_vp8.h │ │ │ │ ├── frame.c │ │ │ │ ├── idec.c │ │ │ │ ├── io.c │ │ │ │ ├── quant.c │ │ │ │ ├── tree.c │ │ │ │ ├── vp8.c │ │ │ │ ├── vp8i.h │ │ │ │ ├── vp8l.c │ │ │ │ ├── vp8li.h │ │ │ │ ├── webp.c │ │ │ │ └── webpi.h │ │ │ ├── demux │ │ │ │ ├── Makefile.am │ │ │ │ ├── demux.c │ │ │ │ └── libwebpdemux.pc.in │ │ │ ├── dsp │ │ │ │ ├── Makefile.am │ │ │ │ ├── alpha_processing.c │ │ │ │ ├── alpha_processing_sse2.c │ │ │ │ ├── cpu.c │ │ │ │ ├── dec.c │ │ │ │ ├── dec_clip_tables.c │ │ │ │ ├── dec_mips32.c │ │ │ │ ├── dec_neon.c │ │ │ │ ├── dec_sse2.c │ │ │ │ ├── dsp.h │ │ │ │ ├── enc.c │ │ │ │ ├── enc_avx2.c │ │ │ │ ├── enc_mips32.c │ │ │ │ ├── enc_neon.c │ │ │ │ ├── enc_sse2.c │ │ │ │ ├── lossless.c │ │ │ │ ├── lossless.h │ │ │ │ ├── lossless_mips32.c │ │ │ │ ├── lossless_neon.c │ │ │ │ ├── lossless_sse2.c │ │ │ │ ├── neon.h │ │ │ │ ├── upsampling.c │ │ │ │ ├── upsampling_neon.c │ │ │ │ ├── upsampling_sse2.c │ │ │ │ ├── yuv.c │ │ │ │ ├── yuv.h │ │ │ │ ├── yuv_mips32.c │ │ │ │ ├── yuv_sse2.c │ │ │ │ └── yuv_tables_sse2.h │ │ │ ├── enc │ │ │ │ ├── Makefile.am │ │ │ │ ├── alpha.c │ │ │ │ ├── analysis.c │ │ │ │ ├── backward_references.c │ │ │ │ ├── backward_references.h │ │ │ │ ├── config.c │ │ │ │ ├── cost.c │ │ │ │ ├── cost.h │ │ │ │ ├── filter.c │ │ │ │ ├── frame.c │ │ │ │ ├── histogram.c │ │ │ │ ├── histogram.h │ │ │ │ ├── iterator.c │ │ │ │ ├── picture.c │ │ │ │ ├── picture_csp.c │ │ │ │ ├── picture_psnr.c │ │ │ │ ├── picture_rescale.c │ │ │ │ ├── picture_tools.c │ │ │ │ ├── quant.c │ │ │ │ ├── syntax.c │ │ │ │ ├── token.c │ │ │ │ ├── tree.c │ │ │ │ ├── vp8enci.h │ │ │ │ ├── vp8l.c │ │ │ │ ├── vp8li.h │ │ │ │ └── webpenc.c │ │ │ ├── libwebp.pc.in │ │ │ ├── libwebpdecoder.pc.in │ │ │ ├── mux │ │ │ │ ├── Makefile.am │ │ │ │ ├── libwebpmux.pc.in │ │ │ │ ├── muxedit.c │ │ │ │ ├── muxi.h │ │ │ │ ├── muxinternal.c │ │ │ │ └── muxread.c │ │ │ ├── utils │ │ │ │ ├── Makefile.am │ │ │ │ ├── bit_reader.c │ │ │ │ ├── bit_reader.h │ │ │ │ ├── bit_reader_inl.h │ │ │ │ ├── bit_writer.c │ │ │ │ ├── bit_writer.h │ │ │ │ ├── color_cache.c │ │ │ │ ├── color_cache.h │ │ │ │ ├── endian_inl.h │ │ │ │ ├── filters.c │ │ │ │ ├── filters.h │ │ │ │ ├── huffman.c │ │ │ │ ├── huffman.h │ │ │ │ ├── huffman_encode.c │ │ │ │ ├── huffman_encode.h │ │ │ │ ├── quant_levels.c │ │ │ │ ├── quant_levels.h │ │ │ │ ├── quant_levels_dec.c │ │ │ │ ├── quant_levels_dec.h │ │ │ │ ├── random.c │ │ │ │ ├── random.h │ │ │ │ ├── rescaler.c │ │ │ │ ├── rescaler.h │ │ │ │ ├── thread.c │ │ │ │ ├── thread.h │ │ │ │ ├── utils.c │ │ │ │ └── utils.h │ │ │ └── webp │ │ │ │ ├── decode.h │ │ │ │ ├── demux.h │ │ │ │ ├── encode.h │ │ │ │ ├── format_constants.h │ │ │ │ ├── mux.h │ │ │ │ ├── mux_types.h │ │ │ │ └── types.h │ │ │ └── swig │ │ │ ├── README │ │ │ ├── libwebp.go │ │ │ ├── libwebp.jar │ │ │ ├── libwebp.py │ │ │ ├── libwebp.swig │ │ │ ├── libwebp_gc.c │ │ │ ├── libwebp_go_wrap.c │ │ │ ├── libwebp_java_wrap.c │ │ │ ├── libwebp_python_wrap.c │ │ │ └── setup.py │ │ └── WebImage │ │ ├── Info.plist │ │ └── WebImage.h ├── Images.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── gio.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── gio.xcuserdatad │ │ └── xcschemes │ │ ├── Images.xcscheme │ │ └── xcschememanagement.plist └── Images │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Cell.swift │ ├── Cell.xib │ ├── Info.plist │ └── ViewController.swift └── README.md /01-Alamofire/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/.gitignore -------------------------------------------------------------------------------- /01-Alamofire/Alamo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01-Alamofire/Alamo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /01-Alamofire/Alamo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/AppDelegate.swift -------------------------------------------------------------------------------- /01-Alamofire/Alamo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /01-Alamofire/Alamo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /01-Alamofire/Alamo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /01-Alamofire/Alamo/CreatePostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/CreatePostViewController.swift -------------------------------------------------------------------------------- /01-Alamofire/Alamo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/Info.plist -------------------------------------------------------------------------------- /01-Alamofire/Alamo/PostsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Alamo/PostsViewController.swift -------------------------------------------------------------------------------- /01-Alamofire/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods', '~> 0.39.0' 4 | -------------------------------------------------------------------------------- /01-Alamofire/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Gemfile.lock -------------------------------------------------------------------------------- /01-Alamofire/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Podfile -------------------------------------------------------------------------------- /01-Alamofire/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Podfile.lock -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Download.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Error.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Manager.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Stream.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Upload.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /01-Alamofire/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Manifest.lock -------------------------------------------------------------------------------- /01-Alamofire/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Pods-Alamo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Pods-Alamo/Info.plist -------------------------------------------------------------------------------- /01-Alamofire/Pods/Target Support Files/Pods-Alamo/Pods-Alamo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/01-Alamofire/Pods/Target Support Files/Pods-Alamo/Pods-Alamo-dummy.m -------------------------------------------------------------------------------- /02-Chameleon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/.gitignore -------------------------------------------------------------------------------- /02-Chameleon/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods' 4 | -------------------------------------------------------------------------------- /02-Chameleon/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Gemfile.lock -------------------------------------------------------------------------------- /02-Chameleon/Pascal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02-Chameleon/Pascal.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /02-Chameleon/Pascal/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/AppDelegate.swift -------------------------------------------------------------------------------- /02-Chameleon/Pascal/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /02-Chameleon/Pascal/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /02-Chameleon/Pascal/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /02-Chameleon/Pascal/ImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/ImageViewController.swift -------------------------------------------------------------------------------- /02-Chameleon/Pascal/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/Info.plist -------------------------------------------------------------------------------- /02-Chameleon/Pascal/RainbowViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/RainbowViewController.swift -------------------------------------------------------------------------------- /02-Chameleon/Pascal/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/ViewController.swift -------------------------------------------------------------------------------- /02-Chameleon/Pascal/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/wallpaper.jpg -------------------------------------------------------------------------------- /02-Chameleon/Pascal/wallpaper2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pascal/wallpaper2.jpg -------------------------------------------------------------------------------- /02-Chameleon/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Podfile -------------------------------------------------------------------------------- /02-Chameleon/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Podfile.lock -------------------------------------------------------------------------------- /02-Chameleon/Pods/ChameleonFramework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/ChameleonFramework/LICENSE.md -------------------------------------------------------------------------------- /02-Chameleon/Pods/ChameleonFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/ChameleonFramework/README.md -------------------------------------------------------------------------------- /02-Chameleon/Pods/Headers/Private/ChameleonFramework/Chameleon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Headers/Private/ChameleonFramework/Chameleon.h -------------------------------------------------------------------------------- /02-Chameleon/Pods/Headers/Private/ChameleonFramework/ChameleonEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Headers/Private/ChameleonFramework/ChameleonEnums.h -------------------------------------------------------------------------------- /02-Chameleon/Pods/Headers/Private/ChameleonFramework/Chameleon_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Headers/Private/ChameleonFramework/Chameleon_.h -------------------------------------------------------------------------------- /02-Chameleon/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Manifest.lock -------------------------------------------------------------------------------- /02-Chameleon/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02-Chameleon/Pods/Target Support Files/ChameleonFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Target Support Files/ChameleonFramework/Info.plist -------------------------------------------------------------------------------- /02-Chameleon/Pods/Target Support Files/Pods-Pascal/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/02-Chameleon/Pods/Target Support Files/Pods-Pascal/Info.plist -------------------------------------------------------------------------------- /03-SwiftLint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/.gitignore -------------------------------------------------------------------------------- /03-SwiftLint/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/.swiftlint.yml -------------------------------------------------------------------------------- /03-SwiftLint/Linted.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03-SwiftLint/Linted/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted/AppDelegate.swift -------------------------------------------------------------------------------- /03-SwiftLint/Linted/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /03-SwiftLint/Linted/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /03-SwiftLint/Linted/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /03-SwiftLint/Linted/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted/Info.plist -------------------------------------------------------------------------------- /03-SwiftLint/Linted/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/03-SwiftLint/Linted/ViewController.swift -------------------------------------------------------------------------------- /04-Async/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/.gitignore -------------------------------------------------------------------------------- /04-Async/Asynchronous.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04-Async/Asynchronous.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /04-Async/Asynchronous/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous/AppDelegate.swift -------------------------------------------------------------------------------- /04-Async/Asynchronous/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /04-Async/Asynchronous/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /04-Async/Asynchronous/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous/Info.plist -------------------------------------------------------------------------------- /04-Async/Asynchronous/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Asynchronous/ViewController.swift -------------------------------------------------------------------------------- /04-Async/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods' 4 | -------------------------------------------------------------------------------- /04-Async/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Gemfile.lock -------------------------------------------------------------------------------- /04-Async/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Podfile -------------------------------------------------------------------------------- /04-Async/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Podfile.lock -------------------------------------------------------------------------------- /04-Async/Pods/AsyncSwift/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/AsyncSwift/LICENSE.txt -------------------------------------------------------------------------------- /04-Async/Pods/AsyncSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/AsyncSwift/README.md -------------------------------------------------------------------------------- /04-Async/Pods/AsyncSwift/Source/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/AsyncSwift/Source/Async.swift -------------------------------------------------------------------------------- /04-Async/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Manifest.lock -------------------------------------------------------------------------------- /04-Async/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift-dummy.m -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift-prefix.pch -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift-umbrella.h -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift.modulemap -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/AsyncSwift/AsyncSwift.xcconfig -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/AsyncSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/AsyncSwift/Info.plist -------------------------------------------------------------------------------- /04-Async/Pods/Target Support Files/Pods-Asynchronous/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/04-Async/Pods/Target Support Files/Pods-Asynchronous/Info.plist -------------------------------------------------------------------------------- /05-Static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/.gitignore -------------------------------------------------------------------------------- /05-Static/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /05-Static/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Gemfile.lock -------------------------------------------------------------------------------- /05-Static/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Podfile -------------------------------------------------------------------------------- /05-Static/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Podfile.lock -------------------------------------------------------------------------------- /05-Static/Pods/Headers/Private/Static/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Headers/Private/Static/Static.h -------------------------------------------------------------------------------- /05-Static/Pods/Local Podspecs/Static.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Local Podspecs/Static.podspec.json -------------------------------------------------------------------------------- /05-Static/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Manifest.lock -------------------------------------------------------------------------------- /05-Static/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05-Static/Pods/Static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/LICENSE -------------------------------------------------------------------------------- /05-Static/Pods/Static/Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Readme.markdown -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/ButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/ButtonCell.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/CellType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/CellType.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/DataSource.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/Row.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/Section.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/Static.h -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/SubtitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/SubtitleCell.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/TableViewController.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/Value1Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/Value1Cell.swift -------------------------------------------------------------------------------- /05-Static/Pods/Static/Static/Value2Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Static/Static/Value2Cell.swift -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Pods-Statico/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Pods-Statico/Info.plist -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Pods-Statico/Pods-Statico-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Pods-Statico/Pods-Statico-dummy.m -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Static/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Static/Info.plist -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Static/Static-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Static/Static-dummy.m -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Static/Static-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Static/Static-prefix.pch -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Static/Static-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Static/Static-umbrella.h -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Static/Static.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Static/Static.modulemap -------------------------------------------------------------------------------- /05-Static/Pods/Target Support Files/Static/Static.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Pods/Target Support Files/Static/Static.xcconfig -------------------------------------------------------------------------------- /05-Static/Statico.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05-Static/Statico.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /05-Static/Statico/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico/AppDelegate.swift -------------------------------------------------------------------------------- /05-Static/Statico/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /05-Static/Statico/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /05-Static/Statico/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /05-Static/Statico/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico/Info.plist -------------------------------------------------------------------------------- /05-Static/Statico/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/05-Static/Statico/ViewController.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/.gitignore -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo/AppDelegate.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo/CreatePostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo/CreatePostViewController.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo/Info.plist -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Alamo/PostsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Alamo/PostsViewController.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods', '~> 0.39.0' 4 | -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Gemfile.lock -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Podfile -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Podfile.lock -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/AMScrollingNavbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/AMScrollingNavbar/LICENSE -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/AMScrollingNavbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/AMScrollingNavbar/README.md -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Download.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Error.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Manager.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Stream.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Upload.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Headers/Private/PKHUD/PKHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Headers/Private/PKHUD/PKHUD.h -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Manifest.lock -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/LICENSE -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/FrameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/FrameView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUD.h -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUD.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDAnimating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDAnimating.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDAssets.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDErrorView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDImageView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDProgressView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDSquareBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDSquareBaseView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDStatusView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDSubtitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDSubtitleView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDSuccessView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDSuccessView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDTextView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDTitleView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDWideBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/PKHUDWideBaseView.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/Window.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/PKHUD/WindowRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/PKHUD/WindowRootViewController.swift -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/PKHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/PKHUD/README.md -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/Info.plist -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD-dummy.m -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD-prefix.pch -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD-umbrella.h -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD.modulemap -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/PKHUD/PKHUD.xcconfig -------------------------------------------------------------------------------- /06-AMScrollingNavbar/Pods/Target Support Files/Pods-Alamo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/06-AMScrollingNavbar/Pods/Target Support Files/Pods-Alamo/Info.plist -------------------------------------------------------------------------------- /07-Quick-and-Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/.gitignore -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Cartfile -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Cartfile.resolved -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/.gitignore -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/.travis.yml -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/LICENSE.md -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Info.plist -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/NimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/NimbleTests/Info.plist -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/circle.yml -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/script/release -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/.gitmodules -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/.travis.yml -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Documentation/README.md -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Externals/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Externals/Nimble/test -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick.podspec -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Callsite.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Example.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Filter.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Info.plist -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/Quick.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/QuickSpec.m -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/World.h -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Quick/World.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/QuickTests/Helpers/QuickTestsBridgingHeader.h: -------------------------------------------------------------------------------- 1 | #import "QCKSpecRunner.h" 2 | -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/QuickTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/QuickTests/Info.plist -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/circle.yml -------------------------------------------------------------------------------- /07-Quick-and-Nimble/Carthage/Checkouts/Quick/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/Carthage/Checkouts/Quick/script/release -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimble/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimble/AppDelegate.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimble/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimble/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimble/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimble/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimble/Info.plist -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimble/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimble/ViewController.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimbleTests/CoolNimbleMatchersDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimbleTests/CoolNimbleMatchersDemo.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimbleTests/HealthViewConfiguratorSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimbleTests/HealthViewConfiguratorSpec.swift -------------------------------------------------------------------------------- /07-Quick-and-Nimble/QuickNimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/07-Quick-and-Nimble/QuickNimbleTests/Info.plist -------------------------------------------------------------------------------- /08-Regex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/.gitignore -------------------------------------------------------------------------------- /08-Regex/Cartfile: -------------------------------------------------------------------------------- 1 | github "sharplet/Regex" 2 | 3 | -------------------------------------------------------------------------------- /08-Regex/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "sharplet/Regex" "v0.2.2" 2 | -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/.gitignore -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/.gitmodules -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Cartfile.private -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Cartfile.resolved -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/QuickTests/Helpers/QuickTestsBridgingHeader.h: -------------------------------------------------------------------------------- 1 | #import "QCKSpecRunner.h" 2 | -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Carthage/Checkouts/Quick/circle.yml -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/LICENSE.txt -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/README.md -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex.podspec -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex/Foundation+Ranges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex/Foundation+Ranges.swift -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex/Info.plist -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex/MatchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex/MatchResult.swift -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex/Regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex/Regex.h -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/Regex/Regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/Regex/Regex.swift -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/RegexTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/RegexTests/Info.plist -------------------------------------------------------------------------------- /08-Regex/Carthage/Checkouts/Regex/RegexTests/RegexSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Carthage/Checkouts/Regex/RegexTests/RegexSpec.swift -------------------------------------------------------------------------------- /08-Regex/Regular.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08-Regex/Regular/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular/AppDelegate.swift -------------------------------------------------------------------------------- /08-Regex/Regular/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /08-Regex/Regular/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /08-Regex/Regular/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /08-Regex/Regular/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular/Info.plist -------------------------------------------------------------------------------- /08-Regex/Regular/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/08-Regex/Regular/ViewController.swift -------------------------------------------------------------------------------- /09-JSONCodable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/.gitignore -------------------------------------------------------------------------------- /09-JSONCodable/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Cartfile -------------------------------------------------------------------------------- /09-JSONCodable/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Cartfile.resolved -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/.gitignore -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/.travis.yml -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Alamofire.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Alamofire.podspec -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/CHANGELOG.md -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/CONTRIBUTING.md -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Example/AppDelegate.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Example/Info.plist -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/LICENSE -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/README.md -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Alamofire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Alamofire.h -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Download.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Error.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Info.plist -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Manager.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Stream.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Upload.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/Info.plist -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/ResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/ResponseTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/JSONCodable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/JSONCodable/.gitignore -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/JSONCodable/JSONCodable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/JSONCodable/JSONCodable.podspec -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/JSONCodable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/JSONCodable/LICENSE -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/JSONCodable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/JSONCodable/README.md -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/JSONCodable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/JSONCodable/logo.png -------------------------------------------------------------------------------- /09-JSONCodable/Carthage/Checkouts/JSONCodable/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/Carthage/Checkouts/JSONCodable/logo.sketch -------------------------------------------------------------------------------- /09-JSONCodable/JSON.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /09-JSONCodable/JSON/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/AppDelegate.swift -------------------------------------------------------------------------------- /09-JSONCodable/JSON/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /09-JSONCodable/JSON/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /09-JSONCodable/JSON/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /09-JSONCodable/JSON/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/Info.plist -------------------------------------------------------------------------------- /09-JSONCodable/JSON/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/Post.swift -------------------------------------------------------------------------------- /09-JSONCodable/JSON/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/User.swift -------------------------------------------------------------------------------- /09-JSONCodable/JSON/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/09-JSONCodable/JSON/ViewController.swift -------------------------------------------------------------------------------- /10-Cartography/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/.gitignore -------------------------------------------------------------------------------- /10-Cartography/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /10-Cartography/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Gemfile.lock -------------------------------------------------------------------------------- /10-Cartography/Pirate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /10-Cartography/Pirate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /10-Cartography/Pirate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/AppDelegate.swift -------------------------------------------------------------------------------- /10-Cartography/Pirate/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /10-Cartography/Pirate/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /10-Cartography/Pirate/Assets.xcassets/Image.imageset/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Assets.xcassets/Image.imageset/Untitled.png -------------------------------------------------------------------------------- /10-Cartography/Pirate/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /10-Cartography/Pirate/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /10-Cartography/Pirate/Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Cell.swift -------------------------------------------------------------------------------- /10-Cartography/Pirate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/Info.plist -------------------------------------------------------------------------------- /10-Cartography/Pirate/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/ListViewController.swift -------------------------------------------------------------------------------- /10-Cartography/Pirate/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pirate/ViewController.swift -------------------------------------------------------------------------------- /10-Cartography/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Podfile -------------------------------------------------------------------------------- /10-Cartography/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Podfile.lock -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Align.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Align.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Coefficients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Coefficients.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Compound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Compound.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Constrain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Constrain.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Constraint.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/ConstraintGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/ConstraintGroup.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Context.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Dimension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Dimension.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Distribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Distribute.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Edge.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Edges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Edges.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Expression.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Extensions.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/LayoutProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/LayoutProxy.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Point.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Priority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Priority.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Property.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/Size.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/View.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/Cartography/ViewUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/Cartography/ViewUtils.swift -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/LICENSE -------------------------------------------------------------------------------- /10-Cartography/Pods/Cartography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Cartography/README.md -------------------------------------------------------------------------------- /10-Cartography/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Manifest.lock -------------------------------------------------------------------------------- /10-Cartography/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /10-Cartography/Pods/Target Support Files/Cartography/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Target Support Files/Cartography/Info.plist -------------------------------------------------------------------------------- /10-Cartography/Pods/Target Support Files/Pods-Pirate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/10-Cartography/Pods/Target Support Files/Pods-Pirate/Info.plist -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/AppDelegate.swift -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Assets.xcassets/Dog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Assets.xcassets/Dog.imageset/Contents.json -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Images.swift -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Info.plist -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/OtherDog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/OtherDog.png -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/Storyboards.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/Storyboards.swift -------------------------------------------------------------------------------- /11-SwiftGen/SwiftGenDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/11-SwiftGen/SwiftGenDemo/ViewController.swift -------------------------------------------------------------------------------- /12-Prephirences/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/.gitignore -------------------------------------------------------------------------------- /12-Prephirences/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /12-Prephirences/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Gemfile.lock -------------------------------------------------------------------------------- /12-Prephirences/Perisomething.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /12-Prephirences/Perisomething.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /12-Prephirences/Perisomething/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething/AppDelegate.swift -------------------------------------------------------------------------------- /12-Prephirences/Perisomething/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /12-Prephirences/Perisomething/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /12-Prephirences/Perisomething/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething/Info.plist -------------------------------------------------------------------------------- /12-Prephirences/Perisomething/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Perisomething/ViewController.swift -------------------------------------------------------------------------------- /12-Prephirences/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Podfile -------------------------------------------------------------------------------- /12-Prephirences/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Podfile.lock -------------------------------------------------------------------------------- /12-Prephirences/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Manifest.lock -------------------------------------------------------------------------------- /12-Prephirences/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/LICENSE -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/Prephirences/Plist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/Prephirences/Plist.swift -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/Prephirences/Preference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/Prephirences/Preference.swift -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/Prephirences/PreferencesType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/Prephirences/PreferencesType.swift -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/Prephirences/Prephirences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/Prephirences/Prephirences.swift -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/README.md -------------------------------------------------------------------------------- /12-Prephirences/Pods/Prephirences/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Prephirences/logo.png -------------------------------------------------------------------------------- /12-Prephirences/Pods/Target Support Files/Prephirences/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/12-Prephirences/Pods/Target Support Files/Prephirences/Info.plist -------------------------------------------------------------------------------- /13-PermissionScope/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/.gitignore -------------------------------------------------------------------------------- /13-PermissionScope/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /13-PermissionScope/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Gemfile.lock -------------------------------------------------------------------------------- /13-PermissionScope/Permission.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /13-PermissionScope/Permission.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /13-PermissionScope/Permission/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission/AppDelegate.swift -------------------------------------------------------------------------------- /13-PermissionScope/Permission/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /13-PermissionScope/Permission/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /13-PermissionScope/Permission/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission/Info.plist -------------------------------------------------------------------------------- /13-PermissionScope/Permission/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Permission/ViewController.swift -------------------------------------------------------------------------------- /13-PermissionScope/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Podfile -------------------------------------------------------------------------------- /13-PermissionScope/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Podfile.lock -------------------------------------------------------------------------------- /13-PermissionScope/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Pods/Manifest.lock -------------------------------------------------------------------------------- /13-PermissionScope/Pods/PermissionScope/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Pods/PermissionScope/LICENSE -------------------------------------------------------------------------------- /13-PermissionScope/Pods/PermissionScope/PermissionScope/Structs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Pods/PermissionScope/PermissionScope/Structs.swift -------------------------------------------------------------------------------- /13-PermissionScope/Pods/PermissionScope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Pods/PermissionScope/README.md -------------------------------------------------------------------------------- /13-PermissionScope/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/13-PermissionScope/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /14-Realm/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Cartfile -------------------------------------------------------------------------------- /14-Realm/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Cartfile.resolved -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMArray.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMCollection.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMConstants.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMDefines.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMMigration.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMObject.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMObjectBase.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMObjectSchema.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMPlatform.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMProperty.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMRealm.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMResults.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/RLMSchema.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Headers/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Headers/Realm.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Realm -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Resources/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Resources/CHANGELOG.md -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Resources/Info.plist -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Resources/LICENSE -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Versions/A/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Versions/A/Realm -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/Realm.framework/Versions/Current/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/Realm.framework/Versions/Current/Realm -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/RealmSwift.framework/RealmSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/RealmSwift.framework/RealmSwift -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/Mac/RealmSwift.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/Mac/RealmSwift.framework/Resources/Info.plist -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMDefines.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMPlatform.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Headers/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Headers/Realm.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Info.plist -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/Realm -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/Realm.framework/strip-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/Realm.framework/strip-frameworks.sh -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/RealmSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/RealmSwift.framework/Info.plist -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/iOS/RealmSwift.framework/RealmSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/iOS/RealmSwift.framework/RealmSwift -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMArray.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMDefines.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMObject.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMPlatform.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMProperty.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMRealm.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMResults.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/RLMSchema.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Headers/Realm.h -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Info.plist -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/Realm -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/Realm.framework/strip-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/Realm.framework/strip-frameworks.sh -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/RealmSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/RealmSwift.framework/Info.plist -------------------------------------------------------------------------------- /14-Realm/Carthage/Build/watchOS/RealmSwift.framework/RealmSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Carthage/Build/watchOS/RealmSwift.framework/RealmSwift -------------------------------------------------------------------------------- /14-Realm/Kingdom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /14-Realm/Kingdom/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/AppDelegate.swift -------------------------------------------------------------------------------- /14-Realm/Kingdom/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /14-Realm/Kingdom/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /14-Realm/Kingdom/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /14-Realm/Kingdom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/Info.plist -------------------------------------------------------------------------------- /14-Realm/Kingdom/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/Post.swift -------------------------------------------------------------------------------- /14-Realm/Kingdom/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/User.swift -------------------------------------------------------------------------------- /14-Realm/Kingdom/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/14-Realm/Kingdom/ViewController.swift -------------------------------------------------------------------------------- /15-Eureka/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/.gitignore -------------------------------------------------------------------------------- /15-Eureka/Galileo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /15-Eureka/Galileo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /15-Eureka/Galileo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo/AppDelegate.swift -------------------------------------------------------------------------------- /15-Eureka/Galileo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /15-Eureka/Galileo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /15-Eureka/Galileo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /15-Eureka/Galileo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo/Info.plist -------------------------------------------------------------------------------- /15-Eureka/Galileo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Galileo/ViewController.swift -------------------------------------------------------------------------------- /15-Eureka/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods' 4 | -------------------------------------------------------------------------------- /15-Eureka/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Gemfile.lock -------------------------------------------------------------------------------- /15-Eureka/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Podfile -------------------------------------------------------------------------------- /15-Eureka/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Podfile.lock -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/LICENSE -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/README.md -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/Source/Cells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/Source/Cells.swift -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/Source/Controllers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/Source/Controllers.swift -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/Source/Core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/Source/Core.swift -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/Source/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/Source/Helpers.swift -------------------------------------------------------------------------------- /15-Eureka/Pods/Eureka/Source/Rows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Eureka/Source/Rows.swift -------------------------------------------------------------------------------- /15-Eureka/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Manifest.lock -------------------------------------------------------------------------------- /15-Eureka/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Eureka/Eureka-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Eureka/Eureka-dummy.m -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Eureka/Eureka-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Eureka/Eureka-prefix.pch -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Eureka/Eureka-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Eureka/Eureka-umbrella.h -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Eureka/Eureka.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Eureka/Eureka.modulemap -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Eureka/Eureka.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Eureka/Eureka.xcconfig -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Eureka/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Eureka/Info.plist -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Pods-Galileo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Pods-Galileo/Info.plist -------------------------------------------------------------------------------- /15-Eureka/Pods/Target Support Files/Pods-Galileo/Pods-Galileo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/15-Eureka/Pods/Target Support Files/Pods-Galileo/Pods-Galileo-dummy.m -------------------------------------------------------------------------------- /16-KeychainAccess/Cartfile: -------------------------------------------------------------------------------- 1 | github "kishikawakatsumi/KeychainAccess" 2 | -------------------------------------------------------------------------------- /16-KeychainAccess/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "kishikawakatsumi/KeychainAccess" "v2.3.3" 2 | -------------------------------------------------------------------------------- /16-KeychainAccess/Carthage/Build/Mac/KeychainAccess.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /16-KeychainAccess/Carthage/Build/Mac/KeychainAccess.framework/KeychainAccess: -------------------------------------------------------------------------------- 1 | Versions/Current/KeychainAccess -------------------------------------------------------------------------------- /16-KeychainAccess/Carthage/Build/Mac/KeychainAccess.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /16-KeychainAccess/Carthage/Build/Mac/KeychainAccess.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /16-KeychainAccess/Carthage/Build/Mac/KeychainAccess.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /16-KeychainAccess/Keychain.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/16-KeychainAccess/Keychain.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /16-KeychainAccess/Keychain/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/16-KeychainAccess/Keychain/AppDelegate.swift -------------------------------------------------------------------------------- /16-KeychainAccess/Keychain/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/16-KeychainAccess/Keychain/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /16-KeychainAccess/Keychain/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/16-KeychainAccess/Keychain/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /16-KeychainAccess/Keychain/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/16-KeychainAccess/Keychain/Info.plist -------------------------------------------------------------------------------- /16-KeychainAccess/Keychain/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/16-KeychainAccess/Keychain/ViewController.swift -------------------------------------------------------------------------------- /17-ios-chart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/.gitignore -------------------------------------------------------------------------------- /17-ios-chart/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /17-ios-chart/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Gemfile.lock -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/AppDelegate.swift -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/Info.plist -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/PieViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/PieViewController.swift -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/PizzaSales.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/PizzaSales.swift -------------------------------------------------------------------------------- /17-ios-chart/PiesAndBars/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/PiesAndBars/ViewController.swift -------------------------------------------------------------------------------- /17-ios-chart/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Podfile -------------------------------------------------------------------------------- /17-ios-chart/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Podfile.lock -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Animation/ChartAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Animation/ChartAnimator.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/BarChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/BarChartView.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/BubbleChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/BubbleChartView.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/ChartViewBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/ChartViewBase.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/LineChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/LineChartView.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/PieChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/PieChartView.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/RadarChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/RadarChartView.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Charts/ScatterChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Charts/ScatterChartView.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartLegend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartLegend.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartMarker.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartXAxis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartXAxis.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartYAxis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Components/ChartYAxis.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/BarChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/BarChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/BarChartDataEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/BarChartDataEntry.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/BarChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/BarChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/BubbleChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/BubbleChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/BubbleChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/BubbleChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/CandleChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/CandleChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/CandleChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/CandleChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/ChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/ChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/ChartDataEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/ChartDataEntry.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/ChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/ChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/CombinedChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/CombinedChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/LineChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/LineChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/LineChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/LineChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/PieChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/PieChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/PieChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/PieChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/RadarChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/RadarChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/RadarChartDataSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/RadarChartDataSet.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Data/ScatterChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Data/ScatterChartData.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Highlight/ChartRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Highlight/ChartRange.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Utils/ChartTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Utils/ChartTransformer.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/Charts/Classes/Utils/ChartUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/Charts/Classes/Utils/ChartUtils.swift -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/LICENSE -------------------------------------------------------------------------------- /17-ios-chart/Pods/Charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Charts/README.md -------------------------------------------------------------------------------- /17-ios-chart/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Manifest.lock -------------------------------------------------------------------------------- /17-ios-chart/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Charts/Charts-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Charts/Charts-dummy.m -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Charts/Charts-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Charts/Charts-prefix.pch -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Charts/Charts-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Charts/Charts-umbrella.h -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Charts/Charts.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Charts/Charts.modulemap -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Charts/Charts.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Charts/Charts.xcconfig -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Charts/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Charts/Info.plist -------------------------------------------------------------------------------- /17-ios-chart/Pods/Target Support Files/Pods-PiesAndBars/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/17-ios-chart/Pods/Target Support Files/Pods-PiesAndBars/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Cartfile -------------------------------------------------------------------------------- /18-OHHTTPStubs/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Cartfile.private -------------------------------------------------------------------------------- /18-OHHTTPStubs/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Cartfile.resolved -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Alamofire.framework/Alamofire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Alamofire.framework/Alamofire -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/JSONCodable.framework/JSONCodable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/JSONCodable.framework/JSONCodable -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Headers/DSL.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Headers/Nimble.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Nimble -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Versions/A/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Nimble.framework/Versions/A/Nimble -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/OHHTTPStubs.framework/OHHTTPStubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/OHHTTPStubs.framework/OHHTTPStubs -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Headers/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Headers/QCKDSL.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Headers/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Headers/Quick.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Headers/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Headers/QuickSpec.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Quick -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Versions/A/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/Mac/Quick.framework/Versions/A/Quick -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Alamofire.framework/Alamofire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Alamofire.framework/Alamofire -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Alamofire.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Alamofire.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/JSONCodable.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/JSONCodable.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/JSONCodable.framework/JSONCodable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/JSONCodable.framework/JSONCodable -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Headers/DSL.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Headers/Nimble.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Nimble.framework/Nimble -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/OHHTTPStubs.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/OHHTTPStubs.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/OHHTTPStubs.framework/OHHTTPStubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/OHHTTPStubs.framework/OHHTTPStubs -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Headers/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Headers/QCKDSL.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Headers/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Headers/Quick.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Headers/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Headers/QuickSpec.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/iOS/Quick.framework/Quick -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Alamofire.framework/Alamofire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Alamofire.framework/Alamofire -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Alamofire.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Alamofire.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Headers/DSL.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Headers/Nimble.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Nimble.framework/Nimble -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/OHHTTPStubs.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/OHHTTPStubs.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/OHHTTPStubs.framework/OHHTTPStubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/OHHTTPStubs.framework/OHHTTPStubs -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Headers/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Headers/QCKDSL.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Headers/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Headers/Quick.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/tvOS/Quick.framework/Quick -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/watchOS/Alamofire.framework/Alamofire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/watchOS/Alamofire.framework/Alamofire -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Build/watchOS/Alamofire.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Build/watchOS/Alamofire.framework/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/.gitignore -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/.travis.yml -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Alamofire.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Alamofire.podspec -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/CHANGELOG.md -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/CONTRIBUTING.md -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Example/AppDelegate.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Example/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/LICENSE -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/README.md -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Alamofire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Alamofire.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Download.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Error.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Manager.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Stream.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Upload.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/ResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/ResponseTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/.gitignore -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/JSONCodable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/JSONCodable.podspec -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/LICENSE -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/README.md -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/logo.png -------------------------------------------------------------------------------- /18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/Carthage/Checkouts/JSONCodable/logo.sketch -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/APIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/APIClient.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/AppDelegate.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/Post.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/User.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubs/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubs/ViewController.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubsTests/APIClientSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubsTests/APIClientSpec.swift -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubsTests/HTTPStubsTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubsTests/HTTPStubsTests-Bridging-Header.h -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/18-OHHTTPStubs/HTTPStubsTests/Info.plist -------------------------------------------------------------------------------- /18-OHHTTPStubs/HTTPStubsTests/success_response.json: -------------------------------------------------------------------------------- 1 | { "key": "value" } -------------------------------------------------------------------------------- /19-SDWebImage/Cartfile: -------------------------------------------------------------------------------- 1 | github "rs/SDWebImage" 2 | -------------------------------------------------------------------------------- /19-SDWebImage/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "rs/SDWebImage" "3.7.3" 2 | -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Build/iOS/WebImage.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Build/iOS/WebImage.framework/Info.plist -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Build/iOS/WebImage.framework/WebImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Build/iOS/WebImage.framework/WebImage -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/.gitignore -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/.gitmodules -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/.travis.yml -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/LICENSE -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/README.md -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage.podspec -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Tests/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Tests/Podfile -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Tests/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/AUTHORS -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/COPYING -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/ChangeLog -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/NEWS -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/PATENTS -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/README -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/Vendors/libwebp/doc/TODO -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/WebImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/WebImage/Info.plist -------------------------------------------------------------------------------- /19-SDWebImage/Carthage/Checkouts/SDWebImage/WebImage/WebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Carthage/Checkouts/SDWebImage/WebImage/WebImage.h -------------------------------------------------------------------------------- /19-SDWebImage/Images.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /19-SDWebImage/Images/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/AppDelegate.swift -------------------------------------------------------------------------------- /19-SDWebImage/Images/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /19-SDWebImage/Images/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /19-SDWebImage/Images/Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/Cell.swift -------------------------------------------------------------------------------- /19-SDWebImage/Images/Cell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/Cell.xib -------------------------------------------------------------------------------- /19-SDWebImage/Images/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/Info.plist -------------------------------------------------------------------------------- /19-SDWebImage/Images/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/19-SDWebImage/Images/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/AdventCalendar2015/HEAD/README.md --------------------------------------------------------------------------------