├── .gitignore ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── Carthage └── Checkouts │ ├── Argo │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .hound.yml │ ├── Argo Playground.playground │ │ ├── Pages │ │ │ ├── Basics.xcplaygroundpage │ │ │ │ ├── Contents.swift │ │ │ │ ├── Resources │ │ │ │ │ └── user_with_email.json │ │ │ │ └── timeline.xctimeline │ │ │ └── iTunes Example.xcplaygroundpage │ │ │ │ ├── Contents.swift │ │ │ │ ├── Resources │ │ │ │ └── tropos.json │ │ │ │ └── timeline.xctimeline │ │ ├── contents.xcplayground │ │ └── playground.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Argo.podspec │ ├── Argo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Argo-Mac.xcscheme │ │ │ ├── Argo-iOS.xcscheme │ │ │ ├── Argo-tvOS.xcscheme │ │ │ └── Argo-watchOS.xcscheme │ ├── Argo.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Argo │ │ ├── Extensions │ │ │ ├── Dictionary.swift │ │ │ ├── NSNumber.swift │ │ │ └── RawRepresentable.swift │ │ ├── Functions │ │ │ ├── catDecoded.swift │ │ │ ├── curry.swift │ │ │ ├── decode.swift │ │ │ ├── flatReduce.swift │ │ │ └── sequence.swift │ │ ├── Operators │ │ │ ├── Argo.swift │ │ │ └── Decode.swift │ │ ├── Resources │ │ │ ├── Argo.h │ │ │ └── Info.plist │ │ └── Types │ │ │ ├── Decodable.swift │ │ │ ├── DecodeError.swift │ │ │ ├── Decoded │ │ │ ├── Alternative.swift │ │ │ ├── Applicative.swift │ │ │ ├── Decoded.swift │ │ │ ├── FailureCoalescing.swift │ │ │ ├── Functor.swift │ │ │ └── Monad.swift │ │ │ ├── JSON.swift │ │ │ └── StandardTypes.swift │ ├── ArgoTests │ │ ├── Info.plist │ │ ├── JSON │ │ │ ├── JSONFileReader.swift │ │ │ ├── TemplateIcon2x.png │ │ │ ├── array_root.json │ │ │ ├── big_data.json │ │ │ ├── booleans.json │ │ │ ├── comment.json │ │ │ ├── post_bad_comments.json │ │ │ ├── post_comments.json │ │ │ ├── post_no_comments.json │ │ │ ├── root_array.json │ │ │ ├── root_object.json │ │ │ ├── types.json │ │ │ ├── types_fail_embedded.json │ │ │ ├── url.json │ │ │ ├── user_with_bad_type.json │ │ │ ├── user_with_email.json │ │ │ ├── user_with_nested_name.json │ │ │ ├── user_without_email.json │ │ │ └── user_without_key.json │ │ ├── Models │ │ │ ├── Booleans.swift │ │ │ ├── Comment.swift │ │ │ ├── NSURL.swift │ │ │ ├── Post.swift │ │ │ ├── TestModel.swift │ │ │ └── User.swift │ │ ├── Tests │ │ │ ├── DecodedTests.swift │ │ │ ├── EmbeddedJSONDecodingTests.swift │ │ │ ├── EquatableTests.swift │ │ │ ├── ExampleTests.swift │ │ │ ├── OptionalPropertyDecodingTests.swift │ │ │ ├── PListDecodingTests.swift │ │ │ ├── PerformanceTests.swift │ │ │ ├── RawRepresentableTests.swift │ │ │ ├── SwiftDictionaryDecodingTests.swift │ │ │ └── TypeTests.swift │ │ └── plists │ │ │ ├── PListFileReader.swift │ │ │ └── types.plist │ ├── CONTRIBUTING.md │ ├── Cartfile.private │ ├── Cartfile.resolved │ ├── Carthage │ │ └── Checkouts │ │ │ ├── Curry │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Curry.podspec │ │ │ ├── Curry.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Curry-Mac.xcscheme │ │ │ │ │ ├── Curry-iOS.xcscheme │ │ │ │ │ ├── Curry-tvOS.xcscheme │ │ │ │ │ └── Curry-watchOS.xcscheme │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ ├── Curry.h │ │ │ │ └── Info.plist │ │ │ ├── Source │ │ │ │ └── Curry.swift │ │ │ └── bin │ │ │ │ └── generate │ │ │ └── Runes │ │ │ ├── .gitignore │ │ │ ├── .hound.yml │ │ │ ├── .swiftlint.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Cartfile.private │ │ │ ├── Cartfile.resolved │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Runes.podspec │ │ │ ├── Runes.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Runes-Mac.xcscheme │ │ │ │ ├── Runes-iOS.xcscheme │ │ │ │ ├── Runes-tvOS.xcscheme │ │ │ │ └── Runes-watchOS.xcscheme │ │ │ ├── Source │ │ │ ├── Array.swift │ │ │ ├── Info.plist │ │ │ ├── Optional.swift │ │ │ ├── Runes.h │ │ │ └── Runes.swift │ │ │ ├── Tests │ │ │ ├── Helpers │ │ │ │ ├── Functions.swift │ │ │ │ └── Operators.swift │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Tests │ │ │ │ ├── ArraySpec.swift │ │ │ │ └── OptionalSpec.swift │ │ │ ├── bin │ │ │ ├── carthage-bootstrap-if-needed │ │ │ ├── install-carthage │ │ │ ├── setup │ │ │ └── test │ │ │ └── circle.yml │ ├── Documentation │ │ ├── .gitkeep │ │ ├── Basic-Usage.md │ │ ├── Decode-Enums.md │ │ ├── Decode-Root-Keys.md │ │ ├── Functional-Concepts.md │ │ ├── Ideology.md │ │ ├── README.md │ │ └── Relationships.md │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── archive │ │ ├── setup │ │ └── test │ └── circle.yml │ ├── Curry │ ├── .gitattributes │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── Curry.podspec │ ├── Curry.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Curry-Mac.xcscheme │ │ │ ├── Curry-iOS.xcscheme │ │ │ ├── Curry-tvOS.xcscheme │ │ │ └── Curry-watchOS.xcscheme │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── Resources │ │ ├── Curry.h │ │ └── Info.plist │ ├── Source │ │ └── Curry.swift │ └── bin │ │ └── generate │ ├── DZNEmptyDataSet │ ├── .gitignore │ ├── Carthage │ │ └── Build │ ├── DZNEmptyDataSet.podspec │ ├── Examples │ │ ├── Applications │ │ │ ├── Applications.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Applications.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Applications │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Application.h │ │ │ │ ├── Application.m │ │ │ │ ├── Applications-Info.plist │ │ │ │ ├── Applications-Prefix.pch │ │ │ │ ├── DetailViewController.h │ │ │ │ ├── DetailViewController.m │ │ │ │ ├── Fonts │ │ │ │ │ ├── Ideal Sans │ │ │ │ │ │ └── IdealSans-Book-Pro.otf │ │ │ │ │ └── Lato │ │ │ │ │ │ └── Lato-Regular.ttf │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── button_background_foursquare_highlight.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── button_background_foursquare_highlight.png │ │ │ │ │ │ └── button_background_foursquare_highlight@2x.png │ │ │ │ │ ├── button_background_foursquare_normal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── button_background_foursquare_normal.png │ │ │ │ │ │ └── button_background_foursquare_normal@2x.png │ │ │ │ │ ├── button_background_icloud_highlight.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── button_background_icloud_highlight.png │ │ │ │ │ │ └── button_background_icloud_highlight@2x.png │ │ │ │ │ ├── button_background_icloud_normal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── button_background_icloud_normal.png │ │ │ │ │ │ └── button_background_icloud_normal@2x.png │ │ │ │ │ ├── button_background_kickstarter_highlight.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── button_background_kickstarter_highlight.png │ │ │ │ │ │ └── button_background_kickstarter_highlight@2x.png │ │ │ │ │ ├── button_background_kickstarter_normal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── button_background_kickstarter_normal.png │ │ │ │ │ │ └── button_background_kickstarter_normal@2x.png │ │ │ │ │ ├── header_pinterest.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── header_pinterest.png │ │ │ │ │ │ └── header_pinterest@2x.png │ │ │ │ │ ├── header_podcasts.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── header_podcasts.png │ │ │ │ │ │ └── header_podcasts@2x.png │ │ │ │ │ ├── icon_500px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_500px.png │ │ │ │ │ │ └── icon_500px@2x.png │ │ │ │ │ ├── icon_airbnb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_airbnb.png │ │ │ │ │ │ └── icon_airbnb@2x.png │ │ │ │ │ ├── icon_appstore.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_appstore.png │ │ │ │ │ │ └── icon_appstore@2x.png │ │ │ │ │ ├── icon_camera.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_camera.png │ │ │ │ │ │ └── icon_camera@2x.png │ │ │ │ │ ├── icon_dropbox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_dropbox.png │ │ │ │ │ │ └── icon_dropbox@2x.png │ │ │ │ │ ├── icon_facebook.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_facebook.png │ │ │ │ │ │ └── icon_facebook@2x.png │ │ │ │ │ ├── icon_fancy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_fancy.png │ │ │ │ │ │ └── icon_fancy@2x.png │ │ │ │ │ ├── icon_foursquare.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_foursquare.png │ │ │ │ │ │ └── icon_foursquare@2x.png │ │ │ │ │ ├── icon_icloud.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_icloud.png │ │ │ │ │ │ └── icon_icloud@2x.png │ │ │ │ │ ├── icon_instagram.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_instagram.png │ │ │ │ │ │ └── icon_instagram@2x.png │ │ │ │ │ ├── icon_itunes_connect.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_itunesconnect.png │ │ │ │ │ │ └── icon_itunesconnect@2x.png │ │ │ │ │ ├── icon_kickstarter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_kickstarter.png │ │ │ │ │ │ └── icon_kickstarter@2x.png │ │ │ │ │ ├── icon_path.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_path.png │ │ │ │ │ │ └── icon_path@2x.png │ │ │ │ │ ├── icon_photos.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_photos.png │ │ │ │ │ │ └── icon_photos@2x.png │ │ │ │ │ ├── icon_pinterest.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_pinterest.png │ │ │ │ │ │ └── icon_pinterest@2x.png │ │ │ │ │ ├── icon_podcasts.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_podcasts.png │ │ │ │ │ │ └── icon_podcasts@2x.png │ │ │ │ │ ├── icon_remote.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_remote.png │ │ │ │ │ │ └── icon_remote@2x.png │ │ │ │ │ ├── icon_safari.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_safari.png │ │ │ │ │ │ └── icon_safari@2x.png │ │ │ │ │ ├── icon_skype.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_skype.png │ │ │ │ │ │ └── icon_skype@2x.png │ │ │ │ │ ├── icon_slack.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_slack.png │ │ │ │ │ │ └── icon_slack@2x.png │ │ │ │ │ ├── icon_tumblr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_tumblr.png │ │ │ │ │ │ └── icon_tumblr@2x.png │ │ │ │ │ ├── icon_twitter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_twitter.png │ │ │ │ │ │ └── icon_twitter@2x.png │ │ │ │ │ ├── icon_vesper.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_vesper.png │ │ │ │ │ │ └── icon_vesper@2x.png │ │ │ │ │ ├── icon_videos.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_videos.png │ │ │ │ │ │ └── icon_videos@2x.png │ │ │ │ │ ├── icon_vine.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_vine.png │ │ │ │ │ │ └── icon_vine@2x.png │ │ │ │ │ ├── icon_whatsapp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_whatsapp.png │ │ │ │ │ │ └── icon_whatsapp@2x.png │ │ │ │ │ ├── icon_wwdc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_wwdc.png │ │ │ │ │ │ └── icon_wwdc@2x.png │ │ │ │ │ ├── loading_imgBlue_78x78.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── loading_imgBlue_78x78@2x.png │ │ │ │ │ │ └── loading_imgBlue_78x78@3x.png │ │ │ │ │ ├── logo_500px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_500px.png │ │ │ │ │ │ └── logo_500px@2x.png │ │ │ │ │ ├── logo_airbnb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_airbnb.png │ │ │ │ │ │ └── logo_airbnb@2x.png │ │ │ │ │ ├── logo_dropbox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_dropbox.png │ │ │ │ │ │ └── logo_dropbox@2x.png │ │ │ │ │ ├── logo_facebook.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_facebook.png │ │ │ │ │ │ └── logo_facebook@2x.png │ │ │ │ │ ├── logo_fancy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_fancy.png │ │ │ │ │ │ └── logo_fancy@2x.png │ │ │ │ │ ├── logo_foursquare.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_foursquare.png │ │ │ │ │ │ └── logo_foursquare@2x.png │ │ │ │ │ ├── logo_instagram.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_instagram.png │ │ │ │ │ │ └── logo_instagram@2x.png │ │ │ │ │ ├── logo_kickstarter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_kickstarter.png │ │ │ │ │ │ └── logo_kickstarter@2x.png │ │ │ │ │ ├── logo_path.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_path.png │ │ │ │ │ │ └── logo_path@2x.png │ │ │ │ │ ├── logo_pinterest.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_pinterest.png │ │ │ │ │ │ └── logo_pinterest@2x.png │ │ │ │ │ ├── logo_skype.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_skype.png │ │ │ │ │ │ └── logo_skype@2x.png │ │ │ │ │ ├── logo_slack.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_slack.png │ │ │ │ │ │ └── logo_slack@2x.png │ │ │ │ │ ├── logo_tumblr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_tumblr.png │ │ │ │ │ │ └── logo_tumblr@2x.png │ │ │ │ │ ├── logo_twitter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_twitter.png │ │ │ │ │ │ └── logo_twitter@2x.png │ │ │ │ │ ├── logo_vesper.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_vesper.png │ │ │ │ │ │ └── logo_vesper@2x.png │ │ │ │ │ ├── logo_vine.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── logo_vine.png │ │ │ │ │ │ └── logo_vine@2x.png │ │ │ │ │ ├── placeholder_500px.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_500px.png │ │ │ │ │ │ └── placeholder_500px@2x.png │ │ │ │ │ ├── placeholder_airbnb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_airbnb.png │ │ │ │ │ │ └── placeholder_airbnb@2x.png │ │ │ │ │ ├── placeholder_appstore.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_appstore.png │ │ │ │ │ │ └── placeholder_appstore@2x.png │ │ │ │ │ ├── placeholder_dropbox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_dropbox.png │ │ │ │ │ │ └── placeholder_dropbox@2x.png │ │ │ │ │ ├── placeholder_facebook.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_facebook.png │ │ │ │ │ │ └── placeholder_facebook@2x.png │ │ │ │ │ ├── placeholder_fancy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_fancy.png │ │ │ │ │ │ └── placeholder_fancy@2x.png │ │ │ │ │ ├── placeholder_foursquare.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_foursquare.png │ │ │ │ │ │ └── placeholder_foursquare@2x.png │ │ │ │ │ ├── placeholder_instagram.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_instagram.png │ │ │ │ │ │ └── placeholder_instagram@2x.png │ │ │ │ │ ├── placeholder_itunes_connect.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_itunes_connect.png │ │ │ │ │ │ └── placeholder_itunes_connect@2x.png │ │ │ │ │ ├── placeholder_kickstarter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_kickstarter.png │ │ │ │ │ │ └── placeholder_kickstarter@2x.png │ │ │ │ │ ├── placeholder_path.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_path.png │ │ │ │ │ │ └── placeholder_path@2x.png │ │ │ │ │ ├── placeholder_remote.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_remote.png │ │ │ │ │ │ └── placeholder_remote@2x.png │ │ │ │ │ ├── placeholder_skype.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_skype.png │ │ │ │ │ │ └── placeholder_skype@2x.png │ │ │ │ │ ├── placeholder_slack.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_slack.png │ │ │ │ │ │ └── placeholder_slack@2x.png │ │ │ │ │ ├── placeholder_tumblr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_tumblr.png │ │ │ │ │ │ └── placeholder_tumblr@2x.png │ │ │ │ │ ├── placeholder_vesper.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_vesper.png │ │ │ │ │ │ └── placeholder_vesper@2x.png │ │ │ │ │ ├── placeholder_videos.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_videos.png │ │ │ │ │ │ └── placeholder_videos@2x.png │ │ │ │ │ ├── placeholder_vine.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_vine.png │ │ │ │ │ │ └── placeholder_vine@2x.png │ │ │ │ │ └── placeholder_whatsapp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── placeholder_whatsapp.png │ │ │ │ │ │ └── placeholder_whatsapp@2x.png │ │ │ │ ├── MainViewController.h │ │ │ │ ├── MainViewController.m │ │ │ │ ├── Storyboard.storyboard │ │ │ │ ├── System.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-120~car.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@2x~ipad.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-29~ipad.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@2x~ipad.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-40~ipad.png │ │ │ │ │ │ ├── icon-50@2x~ipad.png │ │ │ │ │ │ ├── icon-50~ipad.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-72@2x~ipad.png │ │ │ │ │ │ ├── icon-72~ipad.png │ │ │ │ │ │ ├── icon-76@2x~ipad.png │ │ │ │ │ │ └── icon-76~ipad.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Default-568h@2x-1.png │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default-hd-plus@2x.png │ │ │ │ │ │ ├── Default-hd@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ ├── Default@2x-1.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── UIColor+Hexadecimal.h │ │ │ │ ├── UIColor+Hexadecimal.m │ │ │ │ ├── applications.json │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.m │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Pods │ │ │ │ ├── Headers │ │ │ │ │ ├── Private │ │ │ │ │ │ └── DZNEmptyDataSet │ │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ │ └── Public │ │ │ │ │ │ └── DZNEmptyDataSet │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ ├── Local Podspecs │ │ │ │ │ └── DZNEmptyDataSet.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── DZNEmptyDataSet.xcscheme │ │ │ │ └── Target Support Files │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ ├── DZNEmptyDataSet-Private.xcconfig │ │ │ │ │ ├── DZNEmptyDataSet-dummy.m │ │ │ │ │ ├── DZNEmptyDataSet-prefix.pch │ │ │ │ │ └── DZNEmptyDataSet.xcconfig │ │ │ │ │ └── Pods │ │ │ │ │ ├── Pods-acknowledgements.markdown │ │ │ │ │ ├── Pods-acknowledgements.plist │ │ │ │ │ ├── Pods-dummy.m │ │ │ │ │ ├── Pods-resources.sh │ │ │ │ │ ├── Pods.debug.xcconfig │ │ │ │ │ └── Pods.release.xcconfig │ │ │ └── Screenshots │ │ │ │ ├── Screenshot_Airbnb.png │ │ │ │ ├── Screenshot_Dropbox.png │ │ │ │ ├── Screenshot_Facebook.png │ │ │ │ ├── Screenshot_Fancy.png │ │ │ │ ├── Screenshot_Foursquare.png │ │ │ │ ├── Screenshot_Instagram.png │ │ │ │ ├── Screenshot_Path.png │ │ │ │ ├── Screenshot_Pinterest.png │ │ │ │ ├── Screenshot_Slack.png │ │ │ │ ├── Screenshot_Tumblr.png │ │ │ │ ├── Screenshot_Twitter.png │ │ │ │ ├── Screenshot_Vesper.png │ │ │ │ ├── Screenshot_Vine.png │ │ │ │ ├── Screenshot_WhatsApp.png │ │ │ │ ├── Screenshot_iCloud.png │ │ │ │ ├── Screenshots_row1.png │ │ │ │ └── Screenshots_row2.png │ │ ├── Colors │ │ │ ├── Colors.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Colors.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Colors │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── CollectionViewController.h │ │ │ │ ├── CollectionViewController.m │ │ │ │ ├── Colors-Info.plist │ │ │ │ ├── Colors-Prefix.pch │ │ │ │ ├── DataSource │ │ │ │ │ ├── Color.h │ │ │ │ │ ├── Color.m │ │ │ │ │ ├── Palette.h │ │ │ │ │ ├── Palette.m │ │ │ │ │ ├── UIColor+Hex.h │ │ │ │ │ ├── UIColor+Hex.m │ │ │ │ │ └── colors.json │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── empty_placeholder.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── empty_placeholder.png │ │ │ │ │ │ └── empty_placeholder@2x.png │ │ │ │ │ ├── search_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── search_icon.png │ │ │ │ │ │ └── search_icon@2x.png │ │ │ │ │ ├── tab_collection.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tab_collection.png │ │ │ │ │ │ └── tab_collection@2x.png │ │ │ │ │ ├── tab_search.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tab_search.png │ │ │ │ │ │ └── tab_search@2x.png │ │ │ │ │ └── tab_table.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tab_table.png │ │ │ │ │ │ └── tab_table@2x.png │ │ │ │ ├── SearchViewController.h │ │ │ │ ├── SearchViewController.m │ │ │ │ ├── Storyboard.storyboard │ │ │ │ ├── System.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-120~car.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@2x~ipad.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-29~ipad.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@2x~ipad.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-40~ipad.png │ │ │ │ │ │ ├── icon-50@2x~ipad.png │ │ │ │ │ │ ├── icon-50~ipad.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-57@2x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-72@2x~ipad.png │ │ │ │ │ │ ├── icon-72~ipad.png │ │ │ │ │ │ ├── icon-76@2x~ipad.png │ │ │ │ │ │ └── icon-76~ipad.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default-hd-plus@2x.png │ │ │ │ │ │ ├── Default-hd@2x.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── TableViewController.h │ │ │ │ ├── TableViewController.m │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.m │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Pods │ │ │ │ ├── Headers │ │ │ │ │ ├── Private │ │ │ │ │ │ └── DZNEmptyDataSet │ │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ │ └── Public │ │ │ │ │ │ └── DZNEmptyDataSet │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ ├── Local Podspecs │ │ │ │ │ └── DZNEmptyDataSet.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── DZNEmptyDataSet.xcscheme │ │ │ │ └── Target Support Files │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ ├── DZNEmptyDataSet-Private.xcconfig │ │ │ │ │ ├── DZNEmptyDataSet-dummy.m │ │ │ │ │ ├── DZNEmptyDataSet-prefix.pch │ │ │ │ │ └── DZNEmptyDataSet.xcconfig │ │ │ │ │ └── Pods │ │ │ │ │ ├── Pods-acknowledgements.markdown │ │ │ │ │ ├── Pods-acknowledgements.plist │ │ │ │ │ ├── Pods-dummy.m │ │ │ │ │ ├── Pods-resources.sh │ │ │ │ │ ├── Pods.debug.xcconfig │ │ │ │ │ └── Pods.release.xcconfig │ │ │ └── Screenshots │ │ │ │ └── Screenshot_Colors.png │ │ ├── Countries │ │ │ ├── Countries.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Countries.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Countries │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Country.h │ │ │ │ ├── Country.m │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── ad.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ad.png │ │ │ │ │ │ └── ad@2x.png │ │ │ │ │ ├── ae.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ae.png │ │ │ │ │ │ └── ae@2x.png │ │ │ │ │ ├── af.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── af.png │ │ │ │ │ │ └── af@2x.png │ │ │ │ │ ├── ag.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ag.png │ │ │ │ │ │ └── ag@2x.png │ │ │ │ │ ├── al.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── al.png │ │ │ │ │ │ └── al@2x.png │ │ │ │ │ ├── am.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── am.png │ │ │ │ │ │ └── am@2x.png │ │ │ │ │ ├── ar.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ar.png │ │ │ │ │ │ └── ar@2x.png │ │ │ │ │ ├── at.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── at.png │ │ │ │ │ │ └── at@2x.png │ │ │ │ │ ├── au.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── au.png │ │ │ │ │ │ └── au@2x.png │ │ │ │ │ ├── az.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── az.png │ │ │ │ │ │ └── az@2x.png │ │ │ │ │ ├── ba.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ba.png │ │ │ │ │ │ └── ba@2x.png │ │ │ │ │ ├── bb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bb.png │ │ │ │ │ │ └── bb@2x.png │ │ │ │ │ ├── bd.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bd.png │ │ │ │ │ │ └── bd@2x.png │ │ │ │ │ ├── be.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── be.png │ │ │ │ │ │ └── be@2x.png │ │ │ │ │ ├── bf.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bf.png │ │ │ │ │ │ └── bf@2x.png │ │ │ │ │ ├── bg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ └── bg@2x.png │ │ │ │ │ ├── bh.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bh.png │ │ │ │ │ │ └── bh@2x.png │ │ │ │ │ ├── bi.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bi.png │ │ │ │ │ │ └── bi@2x.png │ │ │ │ │ ├── bj.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bj.png │ │ │ │ │ │ └── bj@2x.png │ │ │ │ │ ├── bn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bn.png │ │ │ │ │ │ └── bn@2x.png │ │ │ │ │ ├── bo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bo.png │ │ │ │ │ │ └── bo@2x.png │ │ │ │ │ ├── br.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── br.png │ │ │ │ │ │ └── br@2x.png │ │ │ │ │ ├── bs.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bs.png │ │ │ │ │ │ └── bs@2x.png │ │ │ │ │ ├── bt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bt.png │ │ │ │ │ │ └── bt@2x.png │ │ │ │ │ ├── bw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bw.png │ │ │ │ │ │ └── bw@2x.png │ │ │ │ │ ├── by.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── by.png │ │ │ │ │ │ └── by@2x.png │ │ │ │ │ ├── bz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bz.png │ │ │ │ │ │ └── bz@2x.png │ │ │ │ │ ├── ca.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ca.png │ │ │ │ │ │ └── ca@2x.png │ │ │ │ │ ├── cd.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cd.png │ │ │ │ │ │ └── cd@2x.png │ │ │ │ │ ├── cf.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cf.png │ │ │ │ │ │ └── cf@2x.png │ │ │ │ │ ├── cg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cg.png │ │ │ │ │ │ └── cg@2x.png │ │ │ │ │ ├── ch.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ch.png │ │ │ │ │ │ └── ch@2x.png │ │ │ │ │ ├── ci.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ci.png │ │ │ │ │ │ └── ci@2x.png │ │ │ │ │ ├── cl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cl.png │ │ │ │ │ │ └── cl@2x.png │ │ │ │ │ ├── cm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cm.png │ │ │ │ │ │ └── cm@2x.png │ │ │ │ │ ├── cn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cn.png │ │ │ │ │ │ └── cn@2x.png │ │ │ │ │ ├── co.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── co.png │ │ │ │ │ │ └── co@2x.png │ │ │ │ │ ├── cr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cr.png │ │ │ │ │ │ └── cr@2x.png │ │ │ │ │ ├── cu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cu.png │ │ │ │ │ │ └── cu@2x.png │ │ │ │ │ ├── cv.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cv.png │ │ │ │ │ │ └── cv@2x.png │ │ │ │ │ ├── cy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cy.png │ │ │ │ │ │ └── cy@2x.png │ │ │ │ │ ├── cz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── cz.png │ │ │ │ │ │ └── cz@2x.png │ │ │ │ │ ├── de.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── de.png │ │ │ │ │ │ └── de@2x.png │ │ │ │ │ ├── dj.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── dj.png │ │ │ │ │ │ └── dj@2x.png │ │ │ │ │ ├── dk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── dk.png │ │ │ │ │ │ └── dk@2x.png │ │ │ │ │ ├── dm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── dm.png │ │ │ │ │ │ └── dm@2x.png │ │ │ │ │ ├── do.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── do.png │ │ │ │ │ │ └── do@2x.png │ │ │ │ │ ├── dz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── dz.png │ │ │ │ │ │ └── dz@2x.png │ │ │ │ │ ├── ec.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ec.png │ │ │ │ │ │ └── ec@2x.png │ │ │ │ │ ├── ee.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ee.png │ │ │ │ │ │ └── ee@2x.png │ │ │ │ │ ├── eg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── eg.png │ │ │ │ │ │ └── eg@2x.png │ │ │ │ │ ├── er.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── er.png │ │ │ │ │ │ └── er@2x.png │ │ │ │ │ ├── es.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── es.png │ │ │ │ │ │ └── es@2x.png │ │ │ │ │ ├── et.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── et.png │ │ │ │ │ │ └── et@2x.png │ │ │ │ │ ├── fi.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── fi.png │ │ │ │ │ │ └── fi@2x.png │ │ │ │ │ ├── fj.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── fj.png │ │ │ │ │ │ └── fj@2x.png │ │ │ │ │ ├── fm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── fm.png │ │ │ │ │ │ └── fm@2x.png │ │ │ │ │ ├── fr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── fr.png │ │ │ │ │ │ └── fr@2x.png │ │ │ │ │ ├── ga.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ga.png │ │ │ │ │ │ └── ga@2x.png │ │ │ │ │ ├── gb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gb.png │ │ │ │ │ │ └── gb@2x.png │ │ │ │ │ ├── gd.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gd.png │ │ │ │ │ │ └── gd@2x.png │ │ │ │ │ ├── ge.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ge.png │ │ │ │ │ │ └── ge@2x.png │ │ │ │ │ ├── gh.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gh.png │ │ │ │ │ │ └── gh@2x.png │ │ │ │ │ ├── gm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gm.png │ │ │ │ │ │ └── gm@2x.png │ │ │ │ │ ├── gn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gn.png │ │ │ │ │ │ └── gn@2x.png │ │ │ │ │ ├── gq.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gq.png │ │ │ │ │ │ └── gq@2x.png │ │ │ │ │ ├── gr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gr.png │ │ │ │ │ │ └── gr@2x.png │ │ │ │ │ ├── gt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gt.png │ │ │ │ │ │ └── gt@2x.png │ │ │ │ │ ├── gw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gw.png │ │ │ │ │ │ └── gw@2x.png │ │ │ │ │ ├── gy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── gy.png │ │ │ │ │ │ └── gy@2x.png │ │ │ │ │ ├── hn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── hn.png │ │ │ │ │ │ └── hn@2x.png │ │ │ │ │ ├── hr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── hr.png │ │ │ │ │ │ └── hr@2x.png │ │ │ │ │ ├── ht.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ht.png │ │ │ │ │ │ └── ht@2x.png │ │ │ │ │ ├── hu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── hu.png │ │ │ │ │ │ └── hu@2x.png │ │ │ │ │ ├── id.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── id.png │ │ │ │ │ │ └── id@2x.png │ │ │ │ │ ├── ie.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ie.png │ │ │ │ │ │ └── ie@2x.png │ │ │ │ │ ├── il.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── il.png │ │ │ │ │ │ └── il@2x.png │ │ │ │ │ ├── in.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── in.png │ │ │ │ │ │ └── in@2x.png │ │ │ │ │ ├── iq.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── iq.png │ │ │ │ │ │ └── iq@2x.png │ │ │ │ │ ├── ir.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ir.png │ │ │ │ │ │ └── ir@2x.png │ │ │ │ │ ├── is.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── is.png │ │ │ │ │ │ └── is@2x.png │ │ │ │ │ ├── it.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── it.png │ │ │ │ │ │ └── it@2x.png │ │ │ │ │ ├── jm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── jm.png │ │ │ │ │ │ └── jm@2x.png │ │ │ │ │ ├── jo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── jo.png │ │ │ │ │ │ └── jo@2x.png │ │ │ │ │ ├── jp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── jp.png │ │ │ │ │ │ └── jp@2x.png │ │ │ │ │ ├── ke.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ke.png │ │ │ │ │ │ └── ke@2x.png │ │ │ │ │ ├── kg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kg.png │ │ │ │ │ │ └── kg@2x.png │ │ │ │ │ ├── kh.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kh.png │ │ │ │ │ │ └── kh@2x.png │ │ │ │ │ ├── ki.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ki.png │ │ │ │ │ │ └── ki@2x.png │ │ │ │ │ ├── km.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── km.png │ │ │ │ │ │ └── km@2x.png │ │ │ │ │ ├── kn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kn.png │ │ │ │ │ │ └── kn@2x.png │ │ │ │ │ ├── kp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kp.png │ │ │ │ │ │ └── kp@2x.png │ │ │ │ │ ├── kr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kr.png │ │ │ │ │ │ └── kr@2x.png │ │ │ │ │ ├── kv.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kv.png │ │ │ │ │ │ └── kv@2x.png │ │ │ │ │ ├── kw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kw.png │ │ │ │ │ │ └── kw@2x.png │ │ │ │ │ ├── kz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── kz.png │ │ │ │ │ │ └── kz@2x.png │ │ │ │ │ ├── la.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── la.png │ │ │ │ │ │ └── la@2x.png │ │ │ │ │ ├── lb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lb.png │ │ │ │ │ │ └── lb@2x.png │ │ │ │ │ ├── lc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lc.png │ │ │ │ │ │ └── lc@2x.png │ │ │ │ │ ├── li.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── li.png │ │ │ │ │ │ └── li@2x.png │ │ │ │ │ ├── lk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lk.png │ │ │ │ │ │ └── lk@2x.png │ │ │ │ │ ├── lr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lr.png │ │ │ │ │ │ └── lr@2x.png │ │ │ │ │ ├── ls.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ls.png │ │ │ │ │ │ └── ls@2x.png │ │ │ │ │ ├── lt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lt.png │ │ │ │ │ │ └── lt@2x.png │ │ │ │ │ ├── lu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lu.png │ │ │ │ │ │ └── lu@2x.png │ │ │ │ │ ├── lv.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── lv.png │ │ │ │ │ │ └── lv@2x.png │ │ │ │ │ ├── ly.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ly.png │ │ │ │ │ │ └── ly@2x.png │ │ │ │ │ ├── ma.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ma.png │ │ │ │ │ │ └── ma@2x.png │ │ │ │ │ ├── mc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mc.png │ │ │ │ │ │ └── mc@2x.png │ │ │ │ │ ├── md.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── md.png │ │ │ │ │ │ └── md@2x.png │ │ │ │ │ ├── me.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── me.png │ │ │ │ │ │ └── me@2x.png │ │ │ │ │ ├── mg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mg.png │ │ │ │ │ │ └── mg@2x.png │ │ │ │ │ ├── mh.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mh.png │ │ │ │ │ │ └── mh@2x.png │ │ │ │ │ ├── mk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mk.png │ │ │ │ │ │ └── mk@2x.png │ │ │ │ │ ├── ml.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ml.png │ │ │ │ │ │ └── ml@2x.png │ │ │ │ │ ├── mm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mm.png │ │ │ │ │ │ └── mm@2x.png │ │ │ │ │ ├── mn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mn.png │ │ │ │ │ │ └── mn@2x.png │ │ │ │ │ ├── mr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mr.png │ │ │ │ │ │ └── mr@2x.png │ │ │ │ │ ├── mt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mt.png │ │ │ │ │ │ └── mt@2x.png │ │ │ │ │ ├── mu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mu.png │ │ │ │ │ │ └── mu@2x.png │ │ │ │ │ ├── mv.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mv.png │ │ │ │ │ │ └── mv@2x.png │ │ │ │ │ ├── mw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mw.png │ │ │ │ │ │ └── mw@2x.png │ │ │ │ │ ├── mx.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mx.png │ │ │ │ │ │ └── mx@2x.png │ │ │ │ │ ├── my.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── my.png │ │ │ │ │ │ └── my@2x.png │ │ │ │ │ ├── mz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mz.png │ │ │ │ │ │ └── mz@2x.png │ │ │ │ │ ├── na.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── na.png │ │ │ │ │ │ └── na@2x.png │ │ │ │ │ ├── ne.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ne.png │ │ │ │ │ │ └── ne@2x.png │ │ │ │ │ ├── ng.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ng.png │ │ │ │ │ │ └── ng@2x.png │ │ │ │ │ ├── ni.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ni.png │ │ │ │ │ │ └── ni@2x.png │ │ │ │ │ ├── nl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── nl.png │ │ │ │ │ │ └── nl@2x.png │ │ │ │ │ ├── no.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── no.png │ │ │ │ │ │ └── no@2x.png │ │ │ │ │ ├── np.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── np.png │ │ │ │ │ │ └── np@2x.png │ │ │ │ │ ├── nr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── nr.png │ │ │ │ │ │ └── nr@2x.png │ │ │ │ │ ├── nz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── nz.png │ │ │ │ │ │ └── nz@2x.png │ │ │ │ │ ├── om.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── om.png │ │ │ │ │ │ └── om@2x.png │ │ │ │ │ ├── pa.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pa.png │ │ │ │ │ │ └── pa@2x.png │ │ │ │ │ ├── pe.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pe.png │ │ │ │ │ │ └── pe@2x.png │ │ │ │ │ ├── pg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pg.png │ │ │ │ │ │ └── pg@2x.png │ │ │ │ │ ├── ph.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ph.png │ │ │ │ │ │ └── ph@2x.png │ │ │ │ │ ├── pk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pk.png │ │ │ │ │ │ └── pk@2x.png │ │ │ │ │ ├── pl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pl.png │ │ │ │ │ │ └── pl@2x.png │ │ │ │ │ ├── pt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pt.png │ │ │ │ │ │ └── pt@2x.png │ │ │ │ │ ├── pw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pw.png │ │ │ │ │ │ └── pw@2x.png │ │ │ │ │ ├── py.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── py.png │ │ │ │ │ │ └── py@2x.png │ │ │ │ │ ├── qa.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── qa.png │ │ │ │ │ │ └── qa@2x.png │ │ │ │ │ ├── ro.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ro.png │ │ │ │ │ │ └── ro@2x.png │ │ │ │ │ ├── rs.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── rs.png │ │ │ │ │ │ └── rs@2x.png │ │ │ │ │ ├── ru.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ru.png │ │ │ │ │ │ └── ru@2x.png │ │ │ │ │ ├── rw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── rw.png │ │ │ │ │ │ └── rw@2x.png │ │ │ │ │ ├── sa.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sa.png │ │ │ │ │ │ └── sa@2x.png │ │ │ │ │ ├── sb.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sb.png │ │ │ │ │ │ └── sb@2x.png │ │ │ │ │ ├── sc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sc.png │ │ │ │ │ │ └── sc@2x.png │ │ │ │ │ ├── sd.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sd.png │ │ │ │ │ │ └── sd@2x.png │ │ │ │ │ ├── se.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── se.png │ │ │ │ │ │ └── se@2x.png │ │ │ │ │ ├── search_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── search_icon.png │ │ │ │ │ │ └── search_icon@2x.png │ │ │ │ │ ├── sg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sg.png │ │ │ │ │ │ └── sg@2x.png │ │ │ │ │ ├── si.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── si.png │ │ │ │ │ │ └── si@2x.png │ │ │ │ │ ├── sk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sk.png │ │ │ │ │ │ └── sk@2x.png │ │ │ │ │ ├── sl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sl.png │ │ │ │ │ │ └── sl@2x.png │ │ │ │ │ ├── sm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sm.png │ │ │ │ │ │ └── sm@2x.png │ │ │ │ │ ├── sn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sn.png │ │ │ │ │ │ └── sn@2x.png │ │ │ │ │ ├── so.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── so.png │ │ │ │ │ │ └── so@2x.png │ │ │ │ │ ├── sr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sr.png │ │ │ │ │ │ └── sr@2x.png │ │ │ │ │ ├── ss.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ss.png │ │ │ │ │ │ └── ss@2x.png │ │ │ │ │ ├── st.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── st.png │ │ │ │ │ │ └── st@2x.png │ │ │ │ │ ├── sv.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sv.png │ │ │ │ │ │ └── sv@2x.png │ │ │ │ │ ├── sy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sy.png │ │ │ │ │ │ └── sy@2x.png │ │ │ │ │ ├── sz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sz.png │ │ │ │ │ │ └── sz@2x.png │ │ │ │ │ ├── td.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── td.png │ │ │ │ │ │ └── td@2x.png │ │ │ │ │ ├── tg.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tg.png │ │ │ │ │ │ └── tg@2x.png │ │ │ │ │ ├── th.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── th.png │ │ │ │ │ │ └── th@2x.png │ │ │ │ │ ├── tj.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tj.png │ │ │ │ │ │ └── tj@2x.png │ │ │ │ │ ├── tl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tl.png │ │ │ │ │ │ └── tl@2x.png │ │ │ │ │ ├── tm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tm.png │ │ │ │ │ │ └── tm@2x.png │ │ │ │ │ ├── tn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tn.png │ │ │ │ │ │ └── tn@2x.png │ │ │ │ │ ├── to.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── to.png │ │ │ │ │ │ └── to@2x.png │ │ │ │ │ ├── tr.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tr.png │ │ │ │ │ │ └── tr@2x.png │ │ │ │ │ ├── tt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tt.png │ │ │ │ │ │ └── tt@2x.png │ │ │ │ │ ├── tv.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tv.png │ │ │ │ │ │ └── tv@2x.png │ │ │ │ │ ├── tw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tw.png │ │ │ │ │ │ └── tw@2x.png │ │ │ │ │ ├── tz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tz.png │ │ │ │ │ │ └── tz@2x.png │ │ │ │ │ ├── ua.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ua.png │ │ │ │ │ │ └── ua@2x.png │ │ │ │ │ ├── ug.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ug.png │ │ │ │ │ │ └── ug@2x.png │ │ │ │ │ ├── unknown.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── unknown.png │ │ │ │ │ │ └── unknown@2x.png │ │ │ │ │ ├── us.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── us.png │ │ │ │ │ │ └── us@2x.png │ │ │ │ │ ├── uy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── uy.png │ │ │ │ │ │ └── uy@2x.png │ │ │ │ │ ├── uz.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── uz.png │ │ │ │ │ │ └── uz@2x.png │ │ │ │ │ ├── va.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── va.png │ │ │ │ │ │ └── va@2x.png │ │ │ │ │ ├── vc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── vc.png │ │ │ │ │ │ └── vc@2x.png │ │ │ │ │ ├── ve.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ve.png │ │ │ │ │ │ └── ve@2x.png │ │ │ │ │ ├── vn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── vn.png │ │ │ │ │ │ └── vn@2x.png │ │ │ │ │ ├── vu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── vu.png │ │ │ │ │ │ └── vu@2x.png │ │ │ │ │ ├── ws.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ws.png │ │ │ │ │ │ └── ws@2x.png │ │ │ │ │ ├── ye.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ye.png │ │ │ │ │ │ └── ye@2x.png │ │ │ │ │ ├── za.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── za.png │ │ │ │ │ │ └── za@2x.png │ │ │ │ │ ├── zm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── zm.png │ │ │ │ │ │ └── zm@2x.png │ │ │ │ │ └── zw.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── zw.png │ │ │ │ │ │ └── zw@2x.png │ │ │ │ ├── MainViewController.h │ │ │ │ ├── MainViewController.m │ │ │ │ ├── Model.xcdatamodeld │ │ │ │ │ └── Model.xcdatamodel │ │ │ │ │ │ └── contents │ │ │ │ ├── Supporting Files │ │ │ │ │ ├── Countries-Info.plist │ │ │ │ │ ├── Countries-Prefix.pch │ │ │ │ │ └── main.m │ │ │ │ ├── System.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@2x~ipad.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-29~ipad.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@2x~ipad.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-40~ipad.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-76@2x~ipad.png │ │ │ │ │ │ └── icon-76~ipad.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Default-hd-plus@2x.png │ │ │ │ │ │ ├── Default-hd@2x.png │ │ │ │ │ │ ├── default-568@2x.png │ │ │ │ │ │ └── default@2x.png │ │ │ │ ├── countries.json │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Pods │ │ │ │ ├── Headers │ │ │ │ │ ├── Private │ │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ │ │ └── NSManagedObjectContext-Hydrate │ │ │ │ │ │ │ └── NSManagedObjectContext+Hydrate.h │ │ │ │ │ └── Public │ │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ │ │ └── NSManagedObjectContext-Hydrate │ │ │ │ │ │ └── NSManagedObjectContext+Hydrate.h │ │ │ │ ├── Local Podspecs │ │ │ │ │ └── DZNEmptyDataSet.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── NSManagedObjectContext-Hydrate │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── Source │ │ │ │ │ │ ├── NSManagedObjectContext+Hydrate.h │ │ │ │ │ │ └── NSManagedObjectContext+Hydrate.m │ │ │ │ ├── Pods.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── Target Support Files │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ ├── DZNEmptyDataSet-Private.xcconfig │ │ │ │ │ ├── DZNEmptyDataSet-dummy.m │ │ │ │ │ ├── DZNEmptyDataSet-prefix.pch │ │ │ │ │ └── DZNEmptyDataSet.xcconfig │ │ │ │ │ ├── NSManagedObjectContext-Hydrate │ │ │ │ │ ├── NSManagedObjectContext-Hydrate-Private.xcconfig │ │ │ │ │ ├── NSManagedObjectContext-Hydrate-dummy.m │ │ │ │ │ ├── NSManagedObjectContext-Hydrate-prefix.pch │ │ │ │ │ └── NSManagedObjectContext-Hydrate.xcconfig │ │ │ │ │ └── Pods │ │ │ │ │ ├── Pods-acknowledgements.markdown │ │ │ │ │ ├── Pods-acknowledgements.plist │ │ │ │ │ ├── Pods-dummy.m │ │ │ │ │ ├── Pods-resources.sh │ │ │ │ │ ├── Pods.debug.xcconfig │ │ │ │ │ └── Pods.release.xcconfig │ │ │ └── Screenshots │ │ │ │ ├── Screenshot_Countries_Loading.png │ │ │ │ └── Screenshot_Countries_NoFound.png │ │ └── WebBrowser │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Pods │ │ │ ├── DZNWebViewController │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── Source │ │ │ │ │ ├── Classes │ │ │ │ │ ├── DZNPolyActivity.h │ │ │ │ │ ├── DZNPolyActivity.m │ │ │ │ │ ├── DZNWebViewController.h │ │ │ │ │ └── DZNWebViewController.m │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Chrome7.png │ │ │ │ │ ├── Chrome7@2x.png │ │ │ │ │ ├── Chrome7@2x~ipad.png │ │ │ │ │ ├── Chrome7~ipad.png │ │ │ │ │ ├── Dolphin7.png │ │ │ │ │ ├── Dolphin7@2x.png │ │ │ │ │ ├── Dolphin7@2x~ipad.png │ │ │ │ │ ├── Dolphin7~ipad.png │ │ │ │ │ ├── Link7.png │ │ │ │ │ ├── Link7@2x.png │ │ │ │ │ ├── Link7@2x~ipad.png │ │ │ │ │ ├── Link7~ipad.png │ │ │ │ │ ├── Opera7.png │ │ │ │ │ ├── Opera7@2x.png │ │ │ │ │ ├── Opera7@2x~ipad.png │ │ │ │ │ ├── Opera7~ipad.png │ │ │ │ │ ├── Safari7.png │ │ │ │ │ ├── Safari7@2x.png │ │ │ │ │ ├── Safari7@2x~ipad.png │ │ │ │ │ ├── Safari7~ipad.png │ │ │ │ │ ├── toolbar_backward.png │ │ │ │ │ ├── toolbar_backward@2x.png │ │ │ │ │ ├── toolbar_forward.png │ │ │ │ │ └── toolbar_forward@2x.png │ │ │ │ │ └── Scripts │ │ │ │ │ └── inpector-script.js │ │ │ ├── Headers │ │ │ │ ├── Private │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ │ ├── DZNWebViewController │ │ │ │ │ │ ├── DZNPolyActivity.h │ │ │ │ │ │ └── DZNWebViewController.h │ │ │ │ │ └── NJKWebViewProgress │ │ │ │ │ │ ├── NJKWebViewProgress.h │ │ │ │ │ │ └── NJKWebViewProgressView.h │ │ │ │ └── Public │ │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ │ └── UIScrollView+EmptyDataSet.h │ │ │ │ │ ├── DZNWebViewController │ │ │ │ │ ├── DZNPolyActivity.h │ │ │ │ │ └── DZNWebViewController.h │ │ │ │ │ └── NJKWebViewProgress │ │ │ │ │ ├── NJKWebViewProgress.h │ │ │ │ │ └── NJKWebViewProgressView.h │ │ │ ├── Local Podspecs │ │ │ │ └── DZNEmptyDataSet.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── NJKWebViewProgress │ │ │ │ ├── LICENSE │ │ │ │ ├── NJKWebViewProgress │ │ │ │ │ ├── NJKWebViewProgress.h │ │ │ │ │ ├── NJKWebViewProgress.m │ │ │ │ │ ├── NJKWebViewProgressView.h │ │ │ │ │ └── NJKWebViewProgressView.m │ │ │ │ └── README.md │ │ │ ├── Pods.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── Target Support Files │ │ │ │ ├── DZNEmptyDataSet │ │ │ │ ├── DZNEmptyDataSet-Private.xcconfig │ │ │ │ ├── DZNEmptyDataSet-dummy.m │ │ │ │ ├── DZNEmptyDataSet-prefix.pch │ │ │ │ └── DZNEmptyDataSet.xcconfig │ │ │ │ ├── DZNWebViewController │ │ │ │ ├── DZNWebViewController-Private.xcconfig │ │ │ │ ├── DZNWebViewController-dummy.m │ │ │ │ ├── DZNWebViewController-prefix.pch │ │ │ │ └── DZNWebViewController.xcconfig │ │ │ │ ├── NJKWebViewProgress │ │ │ │ ├── NJKWebViewProgress-Private.xcconfig │ │ │ │ ├── NJKWebViewProgress-dummy.m │ │ │ │ ├── NJKWebViewProgress-prefix.pch │ │ │ │ └── NJKWebViewProgress.xcconfig │ │ │ │ └── Pods │ │ │ │ ├── Pods-acknowledgements.markdown │ │ │ │ ├── Pods-acknowledgements.plist │ │ │ │ ├── Pods-dummy.m │ │ │ │ ├── Pods-resources.sh │ │ │ │ ├── Pods.debug.xcconfig │ │ │ │ └── Pods.release.xcconfig │ │ │ ├── WebBrowser.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── WebBrowser.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ └── WebBrowser │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Launch Screen.xib │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── WebViewController.h │ │ │ ├── WebViewController.m │ │ │ └── main.m │ ├── Framework │ │ ├── DZNEmptyDataSet.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DZNEmptyDataSet.xcscheme │ │ └── DZNEmptyDataSet │ │ │ ├── DZNEmptyDataSet.h │ │ │ └── Info.plist │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── UIScrollView+EmptyDataSet.h │ │ └── UIScrollView+EmptyDataSet.m │ ├── Nimble │ ├── .gitignore │ ├── .ruby-version │ ├── .swift-version │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Carthage │ │ └── Build │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE.md │ ├── Nimble.podspec │ ├── Nimble.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Nimble-OSX.xcscheme │ │ │ ├── Nimble-iOS.xcscheme │ │ │ └── Nimble-tvOS.xcscheme │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── Nimble │ │ │ ├── Adapters │ │ │ ├── AdapterProtocols.swift │ │ │ ├── AssertionDispatcher.swift │ │ │ ├── AssertionRecorder.swift │ │ │ ├── NimbleEnvironment.swift │ │ │ ├── NimbleXCTestHandler.swift │ │ │ ├── NonObjectiveC │ │ │ │ └── ExceptionCapture.swift │ │ │ └── ObjectiveC │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NMBStringify.h │ │ │ │ ├── NMBStringify.m │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ ├── AllPass.swift │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ ├── BeAKindOf.swift │ │ │ ├── BeAnInstanceOf.swift │ │ │ ├── BeCloseTo.swift │ │ │ ├── BeEmpty.swift │ │ │ ├── BeGreaterThan.swift │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ ├── BeIdenticalTo.swift │ │ │ ├── BeLessThan.swift │ │ │ ├── BeLessThanOrEqual.swift │ │ │ ├── BeLogical.swift │ │ │ ├── BeNil.swift │ │ │ ├── BeVoid.swift │ │ │ ├── BeginWith.swift │ │ │ ├── Contain.swift │ │ │ ├── EndWith.swift │ │ │ ├── Equal.swift │ │ │ ├── HaveCount.swift │ │ │ ├── Match.swift │ │ │ ├── MatchError.swift │ │ │ ├── MatcherFunc.swift │ │ │ ├── MatcherProtocols.swift │ │ │ ├── PostNotification.swift │ │ │ ├── RaisesException.swift │ │ │ ├── SatisfyAnyOf.swift │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ ├── Async.swift │ │ │ ├── Errors.swift │ │ │ ├── Functional.swift │ │ │ ├── SourceLocation.swift │ │ │ └── Stringers.swift │ ├── Tests │ │ ├── LinuxMain.swift │ │ └── Nimble │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ ├── XCTestCaseProvider.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 │ │ │ ├── BeVoidTest.swift │ │ │ ├── BeginWithTest.swift │ │ │ ├── ContainTest.swift │ │ │ ├── EndWithTest.swift │ │ │ ├── EqualTest.swift │ │ │ ├── HaveCountTest.swift │ │ │ ├── MatchErrorTest.swift │ │ │ ├── MatchTest.swift │ │ │ ├── PostNotificationTest.swift │ │ │ ├── RaisesExceptionTest.swift │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ └── ThrowErrorTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ ├── NimbleSpecHelper.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 │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ ├── ObjCSyncTest.m │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ └── ObjcStringersTest.m │ ├── circle.yml │ ├── script │ │ └── release │ └── test │ ├── Quick │ ├── .gitignore │ ├── .gitmodules │ ├── .ruby-version │ ├── .swift-version │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Carthage │ │ └── Build │ ├── Documentation │ │ ├── en-us │ │ │ ├── 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 │ │ ├── ja │ │ │ ├── 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 │ │ └── zh-cn │ │ │ └── SettingUpYourXcodeProject.md │ ├── Externals │ │ └── Nimble │ │ │ ├── .gitignore │ │ │ ├── .ruby-version │ │ │ ├── .swift-version │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE.md │ │ │ ├── Nimble.podspec │ │ │ ├── Nimble.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ └── Nimble │ │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ ├── NonObjectiveC │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ └── ObjectiveC │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── DSL.m │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ ├── DSL+Wait.swift │ │ │ │ ├── DSL.swift │ │ │ │ ├── Expectation.swift │ │ │ │ ├── Expression.swift │ │ │ │ ├── FailureMessage.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeVoid.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatchError.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── PostNotification.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ └── ThrowError.swift │ │ │ │ ├── Nimble.h │ │ │ │ └── Utils │ │ │ │ ├── Async.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── Functional.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ ├── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── Nimble │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ ├── Helpers │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ ├── XCTestCaseProvider.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 │ │ │ │ ├── BeVoidTest.swift │ │ │ │ ├── BeginWithTest.swift │ │ │ │ ├── ContainTest.swift │ │ │ │ ├── EndWithTest.swift │ │ │ │ ├── EqualTest.swift │ │ │ │ ├── HaveCountTest.swift │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ ├── MatchTest.swift │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ ├── SynchronousTests.swift │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ └── objc │ │ │ │ ├── NimbleSpecHelper.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 │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ └── ObjcStringersTest.m │ │ │ ├── circle.yml │ │ │ ├── script │ │ │ └── release │ │ │ └── test │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Package.swift │ ├── 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 │ ├── README.md │ ├── Rakefile │ ├── Sources │ │ ├── Quick │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ ├── Configuration.swift │ │ │ │ ├── QuickConfiguration.h │ │ │ │ ├── QuickConfiguration.m │ │ │ │ └── QuickConfiguration.swift │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── QCKDSL.m │ │ │ │ ├── World+DSL.h │ │ │ │ └── World+DSL.swift │ │ │ ├── ErrorUtility.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ ├── HooksPhase.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── Info.plist │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── NSString+QCKSelectorName.m │ │ │ ├── Quick.h │ │ │ ├── QuickMain.swift │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ ├── QuickSpec.swift │ │ │ ├── QuickTestSuite.swift │ │ │ ├── String+FileName.swift │ │ │ ├── World.h │ │ │ ├── World.swift │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ ├── QuickFocusedTests │ │ │ ├── FocusedTests+ObjC.m │ │ │ ├── FocusedTests.swift │ │ │ ├── Info.plist │ │ │ └── main.swift │ │ ├── QuickTestHelpers │ │ │ ├── SpecRunner.swift │ │ │ └── TestRun.swift │ │ └── 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 │ │ │ ├── ContextTests.swift │ │ │ ├── CrossReferencingSpecs.swift │ │ │ ├── DescribeTests.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 │ │ │ ├── QuickSpec+QuickSpec_MethodList.h │ │ │ ├── QuickSpec+QuickSpec_MethodList.m │ │ │ ├── QuickTestsBridgingHeader.h │ │ │ ├── XCTestCaseProvider.swift │ │ │ ├── XCTestObservationCenter+QCKSuspendObservation.h │ │ │ └── XCTestObservationCenter+QCKSuspendObservation.m │ │ │ ├── Info.plist │ │ │ ├── QuickConfigurationTests.m │ │ │ └── main.swift │ ├── circle.yml │ └── script │ │ ├── release │ │ ├── travis-install-linux │ │ ├── travis-install-osx │ │ ├── travis-script-linux │ │ └── travis-script-osx │ ├── ReactiveCocoa │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Cartfile │ ├── Cartfile.private │ ├── Cartfile.resolved │ ├── Carthage │ │ └── Checkouts │ │ │ ├── Nimble │ │ │ ├── .gitignore │ │ │ ├── .ruby-version │ │ │ ├── .swift-version │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE.md │ │ │ ├── Nimble.podspec │ │ │ ├── Nimble.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── Nimble │ │ │ │ │ ├── Adapters │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ │ ├── NonObjectiveC │ │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ │ └── ObjectiveC │ │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ ├── DSL.m │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ │ ├── DSL+Wait.swift │ │ │ │ │ ├── DSL.swift │ │ │ │ │ ├── Expectation.swift │ │ │ │ │ ├── Expression.swift │ │ │ │ │ ├── FailureMessage.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Matchers │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ │ ├── BeAKindOf.swift │ │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ │ ├── BeCloseTo.swift │ │ │ │ │ ├── BeEmpty.swift │ │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ │ ├── BeLessThan.swift │ │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ │ ├── BeLogical.swift │ │ │ │ │ ├── BeNil.swift │ │ │ │ │ ├── BeVoid.swift │ │ │ │ │ ├── BeginWith.swift │ │ │ │ │ ├── Contain.swift │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ ├── Equal.swift │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ ├── Match.swift │ │ │ │ │ ├── MatchError.swift │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ ├── PostNotification.swift │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ │ └── ThrowError.swift │ │ │ │ │ ├── Nimble.h │ │ │ │ │ └── Utils │ │ │ │ │ ├── Async.swift │ │ │ │ │ ├── Errors.swift │ │ │ │ │ ├── Functional.swift │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ └── Stringers.swift │ │ │ ├── Tests │ │ │ │ ├── LinuxMain.swift │ │ │ │ └── Nimble │ │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ ├── XCTestCaseProvider.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 │ │ │ │ │ ├── BeVoidTest.swift │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ │ ├── SynchronousTests.swift │ │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ │ └── objc │ │ │ │ │ ├── NimbleSpecHelper.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 │ │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ │ └── ObjcStringersTest.m │ │ │ ├── circle.yml │ │ │ ├── script │ │ │ │ └── release │ │ │ └── test │ │ │ ├── Quick │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .ruby-version │ │ │ ├── .swift-version │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Documentation │ │ │ │ ├── en-us │ │ │ │ │ ├── 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 │ │ │ │ ├── ja │ │ │ │ │ ├── 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 │ │ │ │ └── zh-cn │ │ │ │ │ └── SettingUpYourXcodeProject.md │ │ │ ├── Externals │ │ │ │ └── Nimble │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .ruby-version │ │ │ │ │ ├── .swift-version │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── Gemfile │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── Nimble.podspec │ │ │ │ │ ├── Nimble.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Nimble-OSX.xcscheme │ │ │ │ │ │ ├── Nimble-iOS.xcscheme │ │ │ │ │ │ └── Nimble-tvOS.xcscheme │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sources │ │ │ │ │ └── Nimble │ │ │ │ │ │ ├── Adapters │ │ │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ │ │ ├── NonObjectiveC │ │ │ │ │ │ │ └── ExceptionCapture.swift │ │ │ │ │ │ └── ObjectiveC │ │ │ │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ │ │ │ ├── DSL.h │ │ │ │ │ │ │ ├── DSL.m │ │ │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ │ │ │ ├── NMBExpectation.swift │ │ │ │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ │ │ ├── NMBStringify.m │ │ │ │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ │ │ │ ├── DSL+Wait.swift │ │ │ │ │ │ ├── DSL.swift │ │ │ │ │ │ ├── Expectation.swift │ │ │ │ │ │ ├── Expression.swift │ │ │ │ │ │ ├── FailureMessage.swift │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Matchers │ │ │ │ │ │ ├── AllPass.swift │ │ │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ │ │ ├── BeAKindOf.swift │ │ │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ │ │ ├── BeCloseTo.swift │ │ │ │ │ │ ├── BeEmpty.swift │ │ │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ │ │ ├── BeLessThan.swift │ │ │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ │ │ ├── BeLogical.swift │ │ │ │ │ │ ├── BeNil.swift │ │ │ │ │ │ ├── BeVoid.swift │ │ │ │ │ │ ├── BeginWith.swift │ │ │ │ │ │ ├── Contain.swift │ │ │ │ │ │ ├── EndWith.swift │ │ │ │ │ │ ├── Equal.swift │ │ │ │ │ │ ├── HaveCount.swift │ │ │ │ │ │ ├── Match.swift │ │ │ │ │ │ ├── MatchError.swift │ │ │ │ │ │ ├── MatcherFunc.swift │ │ │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ │ │ ├── PostNotification.swift │ │ │ │ │ │ ├── RaisesException.swift │ │ │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ │ │ └── ThrowError.swift │ │ │ │ │ │ ├── Nimble.h │ │ │ │ │ │ └── Utils │ │ │ │ │ │ ├── Async.swift │ │ │ │ │ │ ├── Errors.swift │ │ │ │ │ │ ├── Functional.swift │ │ │ │ │ │ ├── SourceLocation.swift │ │ │ │ │ │ └── Stringers.swift │ │ │ │ │ ├── Tests │ │ │ │ │ ├── LinuxMain.swift │ │ │ │ │ └── Nimble │ │ │ │ │ │ ├── AsynchronousTest.swift │ │ │ │ │ │ ├── Helpers │ │ │ │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ │ │ │ ├── XCTestCaseProvider.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 │ │ │ │ │ │ ├── BeVoidTest.swift │ │ │ │ │ │ ├── BeginWithTest.swift │ │ │ │ │ │ ├── ContainTest.swift │ │ │ │ │ │ ├── EndWithTest.swift │ │ │ │ │ │ ├── EqualTest.swift │ │ │ │ │ │ ├── HaveCountTest.swift │ │ │ │ │ │ ├── MatchErrorTest.swift │ │ │ │ │ │ ├── MatchTest.swift │ │ │ │ │ │ ├── PostNotificationTest.swift │ │ │ │ │ │ ├── RaisesExceptionTest.swift │ │ │ │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ │ │ │ └── ThrowErrorTest.swift │ │ │ │ │ │ ├── SynchronousTests.swift │ │ │ │ │ │ ├── UserDescriptionTest.swift │ │ │ │ │ │ └── objc │ │ │ │ │ │ ├── NimbleSpecHelper.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 │ │ │ │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ │ │ │ ├── ObjCSyncTest.m │ │ │ │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ │ │ │ └── ObjcStringersTest.m │ │ │ │ │ ├── circle.yml │ │ │ │ │ ├── script │ │ │ │ │ └── release │ │ │ │ │ └── test │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── 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 │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Quick-OSX.xcscheme │ │ │ │ │ ├── Quick-iOS.xcscheme │ │ │ │ │ └── Quick-tvOS.xcscheme │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── Sources │ │ │ │ ├── Quick │ │ │ │ │ ├── Callsite.swift │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── Configuration.swift │ │ │ │ │ │ ├── QuickConfiguration.h │ │ │ │ │ │ ├── QuickConfiguration.m │ │ │ │ │ │ └── QuickConfiguration.swift │ │ │ │ │ ├── DSL │ │ │ │ │ │ ├── DSL.swift │ │ │ │ │ │ ├── QCKDSL.h │ │ │ │ │ │ ├── QCKDSL.m │ │ │ │ │ │ ├── World+DSL.h │ │ │ │ │ │ └── World+DSL.swift │ │ │ │ │ ├── ErrorUtility.swift │ │ │ │ │ ├── Example.swift │ │ │ │ │ ├── ExampleGroup.swift │ │ │ │ │ ├── ExampleMetadata.swift │ │ │ │ │ ├── Filter.swift │ │ │ │ │ ├── Hooks │ │ │ │ │ │ ├── Closures.swift │ │ │ │ │ │ ├── ExampleHooks.swift │ │ │ │ │ │ ├── HooksPhase.swift │ │ │ │ │ │ └── SuiteHooks.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ │ │ ├── NSString+QCKSelectorName.h │ │ │ │ │ ├── NSString+QCKSelectorName.m │ │ │ │ │ ├── Quick.h │ │ │ │ │ ├── QuickMain.swift │ │ │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ │ │ ├── QuickSpec.h │ │ │ │ │ ├── QuickSpec.m │ │ │ │ │ ├── QuickSpec.swift │ │ │ │ │ ├── QuickTestSuite.swift │ │ │ │ │ ├── String+FileName.swift │ │ │ │ │ ├── World.h │ │ │ │ │ ├── World.swift │ │ │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ │ │ ├── QuickFocusedTests │ │ │ │ │ ├── FocusedTests+ObjC.m │ │ │ │ │ ├── FocusedTests.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.swift │ │ │ │ ├── QuickTestHelpers │ │ │ │ │ ├── SpecRunner.swift │ │ │ │ │ └── TestRun.swift │ │ │ │ └── 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 │ │ │ │ │ ├── ContextTests.swift │ │ │ │ │ ├── CrossReferencingSpecs.swift │ │ │ │ │ ├── DescribeTests.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 │ │ │ │ │ ├── QuickSpec+QuickSpec_MethodList.h │ │ │ │ │ ├── QuickSpec+QuickSpec_MethodList.m │ │ │ │ │ ├── QuickTestsBridgingHeader.h │ │ │ │ │ ├── XCTestCaseProvider.swift │ │ │ │ │ ├── XCTestObservationCenter+QCKSuspendObservation.h │ │ │ │ │ └── XCTestObservationCenter+QCKSuspendObservation.m │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── QuickConfigurationTests.m │ │ │ │ │ └── main.swift │ │ │ ├── circle.yml │ │ │ └── script │ │ │ │ ├── release │ │ │ │ ├── travis-install-linux │ │ │ │ ├── travis-install-osx │ │ │ │ ├── travis-script-linux │ │ │ │ └── travis-script-osx │ │ │ ├── Result │ │ │ ├── .gitignore │ │ │ ├── .swift-version │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Result.podspec │ │ │ ├── Result.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Result-Mac.xcscheme │ │ │ │ │ ├── Result-iOS.xcscheme │ │ │ │ │ ├── Result-tvOS.xcscheme │ │ │ │ │ └── Result-watchOS.xcscheme │ │ │ ├── Result │ │ │ │ ├── Info.plist │ │ │ │ ├── Result.h │ │ │ │ ├── Result.swift │ │ │ │ └── ResultType.swift │ │ │ └── Tests │ │ │ │ ├── LinuxMain.swift │ │ │ │ └── Result │ │ │ │ ├── Info.plist │ │ │ │ └── ResultTests.swift │ │ │ └── xcconfigs │ │ │ ├── .gitignore │ │ │ ├── Base │ │ │ ├── Common.xcconfig │ │ │ ├── Configurations │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Profile.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Test.xcconfig │ │ │ └── Targets │ │ │ │ ├── Application.xcconfig │ │ │ │ ├── Framework.xcconfig │ │ │ │ └── StaticLibrary.xcconfig │ │ │ ├── Mac OS X │ │ │ ├── Mac-Application.xcconfig │ │ │ ├── Mac-Base.xcconfig │ │ │ ├── Mac-DynamicLibrary.xcconfig │ │ │ ├── Mac-Framework.xcconfig │ │ │ └── Mac-StaticLibrary.xcconfig │ │ │ ├── README.md │ │ │ ├── iOS │ │ │ ├── iOS-Application.xcconfig │ │ │ ├── iOS-Base.xcconfig │ │ │ ├── iOS-Framework.xcconfig │ │ │ └── iOS-StaticLibrary.xcconfig │ │ │ ├── tvOS │ │ │ ├── tvOS-Application.xcconfig │ │ │ ├── tvOS-Base.xcconfig │ │ │ ├── tvOS-Framework.xcconfig │ │ │ └── tvOS-StaticLibrary.xcconfig │ │ │ └── watchOS │ │ │ ├── watchOS-Application.xcconfig │ │ │ ├── watchOS-Base.xcconfig │ │ │ ├── watchOS-Framework.xcconfig │ │ │ └── watchOS-StaticLibrary.xcconfig │ ├── Documentation │ │ ├── BasicOperators.md │ │ ├── DebuggingTechniques.md │ │ ├── DesignGuidelines.md │ │ ├── DocumentingCode.md │ │ ├── FrameworkOverview.md │ │ ├── Legacy │ │ │ ├── BasicOperators.md │ │ │ ├── DesignGuidelines.md │ │ │ ├── FrameworkOverview.md │ │ │ ├── MemoryManagement.md │ │ │ └── README.md │ │ ├── ObjectiveCBridging.md │ │ └── README.md │ ├── Instruments │ │ ├── Disposable Growth.tracetemplate │ │ ├── README.md │ │ └── Signal Events.tracetemplate │ ├── LICENSE.md │ ├── Logo │ │ ├── Icons │ │ │ ├── flat-icon.png │ │ │ ├── gradient-icon.png │ │ │ ├── mono-dark-icon-alt.png │ │ │ ├── mono-dark-icon.png │ │ │ ├── mono-light-icon-alt.png │ │ │ └── mono-light-icon.png │ │ ├── PNG │ │ │ ├── flat-logo.png │ │ │ ├── logo.png │ │ │ ├── mono-dark-bg.png │ │ │ └── mono-light-bg.png │ │ ├── Palette.png │ │ ├── README.md │ │ ├── SVG │ │ │ ├── flat-logo.svg │ │ │ ├── logo.svg │ │ │ ├── mono-dark-bg.svg │ │ │ └── mono-light-bg.svg │ │ └── header.png │ ├── README.md │ ├── ReactiveCocoa.playground │ │ ├── Pages │ │ │ ├── Sandbox.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Signal.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ └── SignalProducer.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ ├── Sources │ │ │ └── PlaygroundUtility.swift │ │ └── contents.xcplayground │ ├── ReactiveCocoa.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── ReactiveCocoa-Mac.xcscheme │ │ │ ├── ReactiveCocoa-iOS.xcscheme │ │ │ ├── ReactiveCocoa-tvOS.xcscheme │ │ │ └── ReactiveCocoa-watchOS.xcscheme │ ├── ReactiveCocoa │ │ ├── Info.plist │ │ ├── Objective-C │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ ├── MKAnnotationView+RACSignalSupport.m │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSArray+RACSequenceAdditions.m │ │ │ ├── NSControl+RACCommandSupport.h │ │ │ ├── NSControl+RACCommandSupport.m │ │ │ ├── NSControl+RACTextSignalSupport.h │ │ │ ├── NSControl+RACTextSignalSupport.m │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSData+RACSupport.m │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSDictionary+RACSequenceAdditions.m │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.m │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSFileHandle+RACSupport.m │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.m │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSInvocation+RACTypeParsing.m │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSNotificationCenter+RACSupport.m │ │ │ ├── NSObject+RACAppKitBindings.h │ │ │ ├── NSObject+RACAppKitBindings.m │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDeallocating.m │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACDescription.m │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACKVOWrapper.m │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACLifting.m │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACPropertySubscribing.m │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSObject+RACSelectorSignal.m │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.m │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.m │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACKeyPathUtilities.m │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSequenceAdditions.m │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSString+RACSupport.m │ │ │ ├── NSText+RACSignalSupport.h │ │ │ ├── NSText+RACSignalSupport.m │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.m │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.m │ │ │ ├── RACArraySequence.h │ │ │ ├── RACArraySequence.m │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBehaviorSubject.m │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACBlockTrampoline.m │ │ │ ├── RACChannel.h │ │ │ ├── RACChannel.m │ │ │ ├── RACCommand.h │ │ │ ├── RACCommand.m │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACCompoundDisposable.m │ │ │ ├── RACCompoundDisposableProvider.d │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDelegateProxy.m │ │ │ ├── RACDisposable.h │ │ │ ├── RACDisposable.m │ │ │ ├── RACDynamicPropertySuperclass.h │ │ │ ├── RACDynamicPropertySuperclass.m │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSequence.m │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACDynamicSignal.m │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEagerSequence.m │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySequence.m │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACEmptySignal.m │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACErrorSignal.m │ │ │ ├── RACEvent.h │ │ │ ├── RACEvent.m │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACGroupedSignal.m │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACImmediateScheduler.m │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACIndexSetSequence.m │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOChannel.m │ │ │ ├── RACKVOProxy.h │ │ │ ├── RACKVOProxy.m │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACKVOTrampoline.m │ │ │ ├── RACMulticastConnection+Private.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACMulticastConnection.m │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACPassthroughSubscriber.m │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACQueueScheduler.m │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReplaySubject.m │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACReturnSignal.m │ │ │ ├── RACScheduler+Private.h │ │ │ ├── RACScheduler+Subclass.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScheduler.m │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACScopedDisposable.m │ │ │ ├── RACSequence.h │ │ │ ├── RACSequence.m │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSerialDisposable.m │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal+Operations.m │ │ │ ├── RACSignal.h │ │ │ ├── RACSignal.m │ │ │ ├── RACSignalProvider.d │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACSignalSequence.m │ │ │ ├── RACStream+Private.h │ │ │ ├── RACStream.h │ │ │ ├── RACStream.m │ │ │ ├── RACStringSequence.h │ │ │ ├── RACStringSequence.m │ │ │ ├── RACSubject.h │ │ │ ├── RACSubject.m │ │ │ ├── RACSubscriber+Private.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriber.m │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.m │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACSubscriptionScheduler.m │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTargetQueueScheduler.m │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTestScheduler.m │ │ │ ├── RACTuple.h │ │ │ ├── RACTuple.m │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACTupleSequence.m │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnarySequence.m │ │ │ ├── RACUnit.h │ │ │ ├── RACUnit.m │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACValueTransformer.m │ │ │ ├── ReactiveCocoa-Bridging-Header.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIActionSheet+RACSignalSupport.m │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.m │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.m │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.m │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.m │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.m │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIControl+RACSignalSupportPrivate.m │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIDatePicker+RACSignalSupport.m │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.m │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.m │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.m │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.m │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.m │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.m │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.m │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.m │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.m │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.m │ │ │ ├── UITextView+RACSignalSupport.h │ │ │ ├── UITextView+RACSignalSupport.m │ │ │ └── extobjc │ │ │ │ ├── EXTKeyPathCoding.h │ │ │ │ ├── EXTRuntimeExtensions.h │ │ │ │ ├── EXTRuntimeExtensions.m │ │ │ │ ├── EXTScope.h │ │ │ │ └── metamacros.h │ │ ├── ReactiveCocoa.h │ │ └── Swift │ │ │ ├── Action.swift │ │ │ ├── Atomic.swift │ │ │ ├── Bag.swift │ │ │ ├── CocoaAction.swift │ │ │ ├── Disposable.swift │ │ │ ├── DynamicProperty.swift │ │ │ ├── Errors.swift │ │ │ ├── Event.swift │ │ │ ├── EventLogger.swift │ │ │ ├── Flatten.swift │ │ │ ├── FoundationExtensions.swift │ │ │ ├── ObjectiveCBridging.swift │ │ │ ├── Observer.swift │ │ │ ├── Optional.swift │ │ │ ├── Property.swift │ │ │ ├── Scheduler.swift │ │ │ ├── Signal.swift │ │ │ ├── SignalProducer.swift │ │ │ └── TupleExtensions.swift │ ├── ReactiveCocoaTests │ │ ├── Info.plist │ │ ├── Objective-C │ │ │ ├── NSControllerRACSupportSpec.m │ │ │ ├── NSEnumeratorRACSequenceAdditionsSpec.m │ │ │ ├── NSNotificationCenterRACSupportSpec.m │ │ │ ├── NSObjectRACAppKitBindingsSpec.m │ │ │ ├── NSObjectRACDeallocatingSpec.m │ │ │ ├── NSObjectRACLiftingSpec.m │ │ │ ├── NSObjectRACPropertySubscribingExamples.h │ │ │ ├── NSObjectRACPropertySubscribingExamples.m │ │ │ ├── NSObjectRACPropertySubscribingSpec.m │ │ │ ├── NSObjectRACSelectorSignalSpec.m │ │ │ ├── NSStringRACKeyPathUtilitiesSpec.m │ │ │ ├── NSURLConnectionRACSupportSpec.m │ │ │ ├── NSUserDefaultsRACSupportSpec.m │ │ │ ├── RACBlockTrampolineSpec.m │ │ │ ├── RACChannelExamples.h │ │ │ ├── RACChannelExamples.m │ │ │ ├── RACChannelSpec.m │ │ │ ├── RACCommandSpec.m │ │ │ ├── RACCompoundDisposableSpec.m │ │ │ ├── RACControlCommandExamples.h │ │ │ ├── RACControlCommandExamples.m │ │ │ ├── RACDelegateProxySpec.m │ │ │ ├── RACDisposableSpec.m │ │ │ ├── RACEventSpec.m │ │ │ ├── RACKVOChannelSpec.m │ │ │ ├── RACKVOProxySpec.m │ │ │ ├── RACKVOWrapperSpec.m │ │ │ ├── RACMulticastConnectionSpec.m │ │ │ ├── RACPropertySignalExamples.h │ │ │ ├── RACPropertySignalExamples.m │ │ │ ├── RACSchedulerSpec.m │ │ │ ├── RACSequenceAdditionsSpec.m │ │ │ ├── RACSequenceExamples.h │ │ │ ├── RACSequenceExamples.m │ │ │ ├── RACSequenceSpec.m │ │ │ ├── RACSerialDisposableSpec.m │ │ │ ├── RACSignalSpec.m │ │ │ ├── RACStreamExamples.h │ │ │ ├── RACStreamExamples.m │ │ │ ├── RACSubclassObject.h │ │ │ ├── RACSubclassObject.m │ │ │ ├── RACSubjectSpec.m │ │ │ ├── RACSubscriberExamples.h │ │ │ ├── RACSubscriberExamples.m │ │ │ ├── RACSubscriberSpec.m │ │ │ ├── RACSubscriptingAssignmentTrampolineSpec.m │ │ │ ├── RACTargetQueueSchedulerSpec.m │ │ │ ├── RACTestExampleScheduler.h │ │ │ ├── RACTestExampleScheduler.m │ │ │ ├── RACTestObject.h │ │ │ ├── RACTestObject.m │ │ │ ├── RACTestSchedulerSpec.m │ │ │ ├── RACTestUIButton.h │ │ │ ├── RACTestUIButton.m │ │ │ ├── RACTupleSpec.m │ │ │ ├── UIActionSheetRACSupportSpec.m │ │ │ ├── UIAlertViewRACSupportSpec.m │ │ │ ├── UIBarButtonItemRACSupportSpec.m │ │ │ ├── UIButtonRACSupportSpec.m │ │ │ └── UIImagePickerControllerRACSupportSpec.m │ │ ├── Swift │ │ │ ├── ActionSpec.swift │ │ │ ├── AtomicSpec.swift │ │ │ ├── BagSpec.swift │ │ │ ├── CocoaActionSpec.swift │ │ │ ├── DisposableSpec.swift │ │ │ ├── FlattenSpec.swift │ │ │ ├── FoundationExtensionsSpec.swift │ │ │ ├── ObjectiveCBridgingSpec.swift │ │ │ ├── PropertySpec.swift │ │ │ ├── SchedulerSpec.swift │ │ │ ├── SignalLifetimeSpec.swift │ │ │ ├── SignalProducerLiftingSpec.swift │ │ │ ├── SignalProducerNimbleMatchers.swift │ │ │ ├── SignalProducerSpec.swift │ │ │ ├── SignalSpec.swift │ │ │ ├── TestError.swift │ │ │ └── TestLogger.swift │ │ └── test-data.json │ └── script │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bootstrap │ │ ├── build │ │ ├── cibuild │ │ ├── schemes.awk │ │ ├── targets.awk │ │ ├── validate-playground.sh │ │ ├── xcodebuild.awk │ │ └── xctool.awk │ ├── Result │ ├── .gitignore │ ├── .gitmodules │ ├── .swift-version │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Cartfile │ ├── Cartfile.resolved │ ├── Carthage │ │ └── Checkouts │ │ │ └── Box │ │ │ ├── .gitignore │ │ │ ├── Box.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Box-Mac.xcscheme │ │ │ │ └── Box-iOS.xcscheme │ │ │ ├── Box │ │ │ ├── Box.h │ │ │ ├── Box.swift │ │ │ ├── BoxType.swift │ │ │ ├── Info.plist │ │ │ └── MutableBox.swift │ │ │ ├── BoxTests │ │ │ ├── BoxTests.swift │ │ │ ├── BoxTypeTests.swift │ │ │ ├── Info.plist │ │ │ └── MutableBoxTests.swift │ │ │ ├── LICENSE │ │ │ └── README.md │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── Result.podspec │ ├── Result.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Result-Mac.xcscheme │ │ │ ├── Result-iOS.xcscheme │ │ │ ├── Result-tvOS.xcscheme │ │ │ └── Result-watchOS.xcscheme │ ├── Result.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Result │ │ ├── Info.plist │ │ ├── Result.h │ │ ├── Result.swift │ │ └── ResultType.swift │ ├── ResultTests │ │ ├── Info.plist │ │ └── ResultTests.swift │ └── Tests │ │ ├── LinuxMain.swift │ │ └── Result │ │ ├── Info.plist │ │ └── ResultTests.swift │ └── SnapKit │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Carthage │ └── Build │ ├── CodeSnippets │ ├── SnapKit Constraint Make.codesnippet │ └── SnapKit Constraint Remake.codesnippet │ ├── Example-iOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── ListViewController.swift │ └── demos │ │ ├── BasicUIScrollViewController.swift │ │ └── SimpleLayoutViewController.swift │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── SnapKit.podspec │ ├── SnapKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SnapKit OSX.xcscheme │ │ ├── SnapKit iOS.xcscheme │ │ └── SnapKit tvOS.xcscheme │ ├── SnapKit.xcworkspace │ └── contents.xcworkspacedata │ ├── Source │ ├── Constraint.swift │ ├── ConstraintAttributes.swift │ ├── ConstraintDescription.swift │ ├── ConstraintItem.swift │ ├── ConstraintMaker.swift │ ├── ConstraintRelation.swift │ ├── Debugging.swift │ ├── EdgeInsets.swift │ ├── Info.plist │ ├── LayoutConstraint.swift │ ├── SnapKit.h │ ├── SnapKit.swift │ ├── View+SnapKit.swift │ └── ViewController+SnapKit.swift │ └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── SwiftGoal.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SwiftGoal.xcscheme ├── SwiftGoal ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.xib ├── Fonts │ ├── OpenSans-Regular.ttf │ └── OpenSans-Semibold.ttf ├── Helpers │ ├── Color.swift │ ├── Extensions.swift │ └── RankingEngine.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-60@2x-1.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-83.5@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x-1.png │ │ ├── Icon-Small@2x.png │ │ └── Icon-Small@3x.png │ ├── Crown.imageset │ │ ├── Contents.json │ │ └── Crown@2x.png │ ├── CrownFilled.imageset │ │ ├── Contents.json │ │ └── CrownFilled@2x.png │ └── FootballFilled.imageset │ │ ├── Contents.json │ │ └── FootballFilled@2x.png ├── Info.plist ├── Models │ ├── Changeset.swift │ ├── Encodable.swift │ ├── Match.swift │ ├── Player.swift │ └── Ranking.swift ├── Settings.bundle │ └── Root.plist ├── Stores │ ├── LocalStore.swift │ ├── RemoteStore.swift │ └── StoreType.swift ├── ViewModels │ ├── EditMatchViewModel.swift │ ├── ManagePlayersViewModel.swift │ ├── MatchesViewModel.swift │ └── RankingsViewModel.swift └── Views │ ├── EditMatchViewController.swift │ ├── ManagePlayersViewController.swift │ ├── MatchCell.swift │ ├── MatchesViewController.swift │ ├── PlayerCell.swift │ ├── RankingCell.swift │ └── RankingsViewController.swift └── SwiftGoalTests ├── Helpers └── RankingEngineSpec.swift ├── Info.plist ├── MockStore.swift ├── Models ├── ChangesetSpec.swift ├── MatchSpec.swift ├── PlayerSpec.swift └── RankingSpec.swift └── ViewModels ├── EditMatchViewModelSpec.swift ├── ManagePlayersViewModelSpec.swift ├── MatchesViewModelSpec.swift └── RankingsViewModelSpec.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/.hound.yml: -------------------------------------------------------------------------------- 1 | swift: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Extensions/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Extensions/Dictionary.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Extensions/NSNumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Extensions/NSNumber.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Extensions/RawRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Extensions/RawRepresentable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Functions/catDecoded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Functions/catDecoded.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Functions/curry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Functions/curry.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Functions/decode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Functions/decode.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Functions/flatReduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Functions/flatReduce.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Functions/sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Functions/sequence.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Operators/Argo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Operators/Argo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Operators/Decode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Operators/Decode.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Resources/Argo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Resources/Argo.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Resources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decodable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/DecodeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/DecodeError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decoded/Alternative.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decoded/Alternative.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decoded/Applicative.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decoded/Applicative.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decoded/Decoded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decoded/Decoded.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decoded/FailureCoalescing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decoded/FailureCoalescing.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decoded/Functor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decoded/Functor.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/Decoded/Monad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/Decoded/Monad.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/JSON.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Argo/Types/StandardTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Argo/Types/StandardTypes.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/JSONFileReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/JSONFileReader.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/TemplateIcon2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/TemplateIcon2x.png -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/array_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/array_root.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/big_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/big_data.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/booleans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/booleans.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/comment.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/post_bad_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/post_bad_comments.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/post_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/post_comments.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/post_no_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/post_no_comments.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/root_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/root_array.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/root_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/root_object.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/types.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/types_fail_embedded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/types_fail_embedded.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/url.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "http://example.com", 3 | } 4 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/user_with_bad_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/user_with_bad_type.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/user_with_email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/user_with_email.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/user_with_nested_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/user_with_nested_name.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/user_without_email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/user_without_email.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/JSON/user_without_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/JSON/user_without_key.json -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Models/Booleans.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Models/Booleans.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Models/Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Models/Comment.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Models/NSURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Models/NSURL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Models/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Models/Post.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Models/TestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Models/TestModel.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Models/User.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/DecodedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/DecodedTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/EmbeddedJSONDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/EmbeddedJSONDecodingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/EquatableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/EquatableTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/ExampleTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/OptionalPropertyDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/OptionalPropertyDecodingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/PListDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/PListDecodingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/PerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/PerformanceTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/RawRepresentableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/RawRepresentableTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/SwiftDictionaryDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/SwiftDictionaryDecodingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/Tests/TypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/Tests/TypeTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/plists/PListFileReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/plists/PListFileReader.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ArgoTests/plists/types.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ArgoTests/plists/types.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Cartfile.private -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Curry.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Curry.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Resources/Curry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Resources/Curry.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Resources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Source/Curry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/Source/Curry.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/bin/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Curry/bin/generate -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/.hound.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Cartfile.private: -------------------------------------------------------------------------------- 1 | github "typelift/SwiftCheck" ~> 0.3.1 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "typelift/SwiftCheck" "v0.3.1" 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Runes.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Runes.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Array.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Optional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Runes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Runes.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Runes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Source/Runes.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Tests/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Tests/Resources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Tests/Tests/ArraySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/Tests/Tests/ArraySpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/bin/install-carthage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/bin/install-carthage -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/bin/setup -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/bin/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Carthage/Checkouts/Runes/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/Basic-Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/Basic-Usage.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/Decode-Enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/Decode-Enums.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/Decode-Root-Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/Decode-Root-Keys.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/Functional-Concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/Functional-Concepts.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/Ideology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/Ideology.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/Documentation/Relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/Documentation/Relationships.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/bin/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/bin/archive -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/bin/setup -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/bin/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Argo/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Argo/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/Curry.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/Curry.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/Curry.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/Curry.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/Resources/Curry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/Resources/Curry.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/Resources/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/Source/Curry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/Source/Curry.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Curry/bin/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Curry/bin/generate -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/DZNEmptyDataSet.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/DZNEmptyDataSet.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Applications/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Applications/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Applications/main.m -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '6.0' 2 | 3 | pod 'DZNEmptyDataSet', :path => '../../' -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Podfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Pods/Headers/Private/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Pods/Headers/Public/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Pods/Manifest.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Applications/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.xcconfig: -------------------------------------------------------------------------------- 1 | DZNEMPTYDATASET_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/AppDelegate.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/AppDelegate.m -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/Colors-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/Colors-Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/Colors-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/Colors-Prefix.pch -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/DataSource/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/DataSource/Color.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/DataSource/Color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/DataSource/Color.m -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Colors/main.m -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '7.0' 2 | 3 | pod 'DZNEmptyDataSet', :path => '../../' -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Podfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Pods/Headers/Private/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Pods/Headers/Public/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Pods/Manifest.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Colors/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.xcconfig: -------------------------------------------------------------------------------- 1 | DZNEMPTYDATASET_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Countries/Country.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Countries/Country.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Countries/Country.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Countries/Country.m -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Countries/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Podfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Podfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Pods/Headers/Private/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Pods/Headers/Public/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Pods/Manifest.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/Countries/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.xcconfig: -------------------------------------------------------------------------------- 1 | DZNEMPTYDATASET_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Podfile -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Podfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Private/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Private/DZNWebViewController/DZNPolyActivity.h: -------------------------------------------------------------------------------- 1 | ../../../DZNWebViewController/Source/Classes/DZNPolyActivity.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Private/DZNWebViewController/DZNWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../DZNWebViewController/Source/Classes/DZNWebViewController.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Private/NJKWebViewProgress/NJKWebViewProgress.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgress.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Private/NJKWebViewProgress/NJKWebViewProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgressView.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Public/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Public/DZNWebViewController/DZNPolyActivity.h: -------------------------------------------------------------------------------- 1 | ../../../DZNWebViewController/Source/Classes/DZNPolyActivity.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Public/DZNWebViewController/DZNWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../DZNWebViewController/Source/Classes/DZNWebViewController.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Public/NJKWebViewProgress/NJKWebViewProgress.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgress.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Headers/Public/NJKWebViewProgress/NJKWebViewProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgressView.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Manifest.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.xcconfig: -------------------------------------------------------------------------------- 1 | DZNEMPTYDATASET_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Target Support Files/DZNWebViewController/DZNWebViewController.xcconfig: -------------------------------------------------------------------------------- 1 | DZNWEBVIEWCONTROLLER_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/Pods/Target Support Files/NJKWebViewProgress/NJKWebViewProgress.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/WebBrowser/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/WebBrowser/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/WebBrowser/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Examples/WebBrowser/WebBrowser/main.m -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Framework/DZNEmptyDataSet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Framework/DZNEmptyDataSet/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Carthage/Checkouts/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/AsynchronousTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/AllPassTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/AllPassTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeVoidTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeVoidTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/HaveCountTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/HaveCountTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/PostNotificationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/PostNotificationTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/SatisfyAnyOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/SatisfyAnyOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ThrowErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ThrowErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/SynchronousTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/UserDescriptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/UserDescriptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAllPassTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAllPassTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeEmptyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeEmptyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCHaveCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCHaveCount.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCUserDescriptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCUserDescriptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjcStringersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjcStringersTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCHaveCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCHaveCount.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCSyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCSyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '1.0' 4 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Quick.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Quick.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Quick.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/String+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/String+FileName.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/World.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/Quick/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTestHelpers/SpecRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTestHelpers/SpecRunner.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTestHelpers/TestRun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTestHelpers/TestRun.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/QuickConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/QuickConfigurationTests.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-install-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/script/travis-install-linux -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-install-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/script/travis-install-osx -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-script-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/script/travis-script-linux -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-script-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Quick/script/travis-script-osx -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/CHANGELOG.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Cartfile: -------------------------------------------------------------------------------- 1 | github "antitypical/Result" ~> 2.1.3 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Cartfile.private -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Externals/Nimble/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Externals/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '1.0' 4 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Quick.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-05-31-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Result.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Result.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Result/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Result/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Result/Result/Result.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/xcconfigs/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage/Build 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/xcconfigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/xcconfigs/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/BasicOperators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/BasicOperators.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/DebuggingTechniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/DebuggingTechniques.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/DesignGuidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/DesignGuidelines.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/DocumentingCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/DocumentingCode.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/FrameworkOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/FrameworkOverview.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/BasicOperators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/BasicOperators.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/DesignGuidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/DesignGuidelines.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/FrameworkOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/FrameworkOverview.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/MemoryManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/MemoryManagement.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/Legacy/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/ObjectiveCBridging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/ObjectiveCBridging.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Documentation/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Instruments/Disposable Growth.tracetemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Instruments/Disposable Growth.tracetemplate -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Instruments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Instruments/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Instruments/Signal Events.tracetemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Instruments/Signal Events.tracetemplate -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Icons/flat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Icons/flat-icon.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Icons/gradient-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Icons/gradient-icon.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-dark-icon-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-dark-icon-alt.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-dark-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-dark-icon.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-light-icon-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-light-icon-alt.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-light-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Icons/mono-light-icon.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/PNG/flat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/PNG/flat-logo.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/PNG/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/PNG/logo.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/PNG/mono-dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/PNG/mono-dark-bg.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/PNG/mono-light-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/PNG/mono-light-bg.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/Palette.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/SVG/flat-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/SVG/flat-logo.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/SVG/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/SVG/logo.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/SVG/mono-dark-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/SVG/mono-dark-bg.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/SVG/mono-light-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/SVG/mono-light-bg.svg -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/Logo/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/Logo/header.png -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACChannel.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACChannel.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACCommand.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACCommand.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACDisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACDisposable.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACDisposable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACDisposable.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEmptySignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEmptySignal.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEmptySignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEmptySignal.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACErrorSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACErrorSignal.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACErrorSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACErrorSignal.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEvent.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACEvent.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOChannel.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOChannel.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOProxy.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACKVOProxy.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACReturnSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACReturnSignal.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACReturnSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACReturnSignal.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACScheduler.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACScheduler.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSequence.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSequence.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSignal.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSignal.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACStream.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACStream.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubject.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubject.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubscriber.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACSubscriber.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACTuple.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACTuple.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACUnit.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Objective-C/RACUnit.m -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Action.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Atomic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Atomic.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Bag.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/CocoaAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/CocoaAction.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Disposable.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/DynamicProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/DynamicProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Event.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/EventLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/EventLogger.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Flatten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Flatten.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Observer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Observer.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Optional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Property.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Scheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Scheduler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/Signal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/SignalProducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/SignalProducer.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/TupleExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoa/Swift/TupleExtensions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/ActionSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/ActionSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/AtomicSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/AtomicSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/BagSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/BagSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/FlattenSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/FlattenSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/PropertySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/PropertySpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/SignalSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/SignalSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/TestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/TestError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/TestLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/Swift/TestLogger.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/ReactiveCocoaTests/test-data.json -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/bootstrap -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/build -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/cibuild -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/schemes.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/schemes.awk -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/targets.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/targets.awk -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/validate-playground.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/validate-playground.sh -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/xcodebuild.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/xcodebuild.awk -------------------------------------------------------------------------------- /Carthage/Checkouts/ReactiveCocoa/script/xctool.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/ReactiveCocoa/script/xctool.awk -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-05-31-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Cartfile: -------------------------------------------------------------------------------- 1 | github "robrix/Box" 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "robrix/Box" "1.2.2" 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/Box.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/Box.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/BoxType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/BoxType.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/MutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/Box/MutableBox.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/BoxTests/BoxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/BoxTests/BoxTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/BoxTests/BoxTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/BoxTests/BoxTypeTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/BoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/BoxTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Carthage/Checkouts/Box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Carthage/Checkouts/Box/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result/Result.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result/Result.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Result/ResultType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Result/ResultType.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/ResultTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/ResultTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/ResultTests/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/ResultTests/ResultTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Tests/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Tests/Result/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Result/Tests/Result/ResultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/Result/Tests/Result/ResultTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/CHANGELOG.md -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/CodeSnippets/SnapKit Constraint Make.codesnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/CodeSnippets/SnapKit Constraint Make.codesnippet -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Example-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Example-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Example-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Example-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Example-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Example-iOS/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Example-iOS/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Example-iOS/ListViewController.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/SnapKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/SnapKit.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/SnapKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/SnapKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/SnapKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/SnapKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/EdgeInsets.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/SnapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/SnapKit.h -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/SnapKit.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/View+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/View+SnapKit.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Source/ViewController+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Source/ViewController+SnapKit.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Tests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/SnapKit/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/Carthage/Checkouts/SnapKit/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/README.md -------------------------------------------------------------------------------- /SwiftGoal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftGoal.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftGoal.xcodeproj/xcshareddata/xcschemes/SwiftGoal.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal.xcodeproj/xcshareddata/xcschemes/SwiftGoal.xcscheme -------------------------------------------------------------------------------- /SwiftGoal/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftGoal/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SwiftGoal/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /SwiftGoal/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /SwiftGoal/Helpers/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Helpers/Color.swift -------------------------------------------------------------------------------- /SwiftGoal/Helpers/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Helpers/Extensions.swift -------------------------------------------------------------------------------- /SwiftGoal/Helpers/RankingEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Helpers/RankingEngine.swift -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/Crown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/Crown.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/Crown.imageset/Crown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/Crown.imageset/Crown@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/CrownFilled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/CrownFilled.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/CrownFilled.imageset/CrownFilled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/CrownFilled.imageset/CrownFilled@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/FootballFilled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/FootballFilled.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftGoal/Images.xcassets/FootballFilled.imageset/FootballFilled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Images.xcassets/FootballFilled.imageset/FootballFilled@2x.png -------------------------------------------------------------------------------- /SwiftGoal/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Info.plist -------------------------------------------------------------------------------- /SwiftGoal/Models/Changeset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Models/Changeset.swift -------------------------------------------------------------------------------- /SwiftGoal/Models/Encodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Models/Encodable.swift -------------------------------------------------------------------------------- /SwiftGoal/Models/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Models/Match.swift -------------------------------------------------------------------------------- /SwiftGoal/Models/Player.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Models/Player.swift -------------------------------------------------------------------------------- /SwiftGoal/Models/Ranking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Models/Ranking.swift -------------------------------------------------------------------------------- /SwiftGoal/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /SwiftGoal/Stores/LocalStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Stores/LocalStore.swift -------------------------------------------------------------------------------- /SwiftGoal/Stores/RemoteStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Stores/RemoteStore.swift -------------------------------------------------------------------------------- /SwiftGoal/Stores/StoreType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Stores/StoreType.swift -------------------------------------------------------------------------------- /SwiftGoal/ViewModels/EditMatchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/ViewModels/EditMatchViewModel.swift -------------------------------------------------------------------------------- /SwiftGoal/ViewModels/ManagePlayersViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/ViewModels/ManagePlayersViewModel.swift -------------------------------------------------------------------------------- /SwiftGoal/ViewModels/MatchesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/ViewModels/MatchesViewModel.swift -------------------------------------------------------------------------------- /SwiftGoal/ViewModels/RankingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/ViewModels/RankingsViewModel.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/EditMatchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/EditMatchViewController.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/ManagePlayersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/ManagePlayersViewController.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/MatchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/MatchCell.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/MatchesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/MatchesViewController.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/PlayerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/PlayerCell.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/RankingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/RankingCell.swift -------------------------------------------------------------------------------- /SwiftGoal/Views/RankingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoal/Views/RankingsViewController.swift -------------------------------------------------------------------------------- /SwiftGoalTests/Helpers/RankingEngineSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/Helpers/RankingEngineSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/Info.plist -------------------------------------------------------------------------------- /SwiftGoalTests/MockStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/MockStore.swift -------------------------------------------------------------------------------- /SwiftGoalTests/Models/ChangesetSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/Models/ChangesetSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/Models/MatchSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/Models/MatchSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/Models/PlayerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/Models/PlayerSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/Models/RankingSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/Models/RankingSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/ViewModels/EditMatchViewModelSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/ViewModels/EditMatchViewModelSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/ViewModels/ManagePlayersViewModelSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/ViewModels/ManagePlayersViewModelSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/ViewModels/MatchesViewModelSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/ViewModels/MatchesViewModelSpec.swift -------------------------------------------------------------------------------- /SwiftGoalTests/ViewModels/RankingsViewModelSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richeterre/SwiftGoal/HEAD/SwiftGoalTests/ViewModels/RankingsViewModelSpec.swift --------------------------------------------------------------------------------