├── .gitignore ├── JenkinsCI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── JenkinsCI.xcscheme ├── JenkinsCI.xcworkspace └── contents.xcworkspacedata ├── JenkinsCI ├── Classes │ ├── AppDelegate │ │ ├── AppDelegate.h │ │ └── AppDelegate.m │ ├── Controllers │ │ ├── ClubsViewController │ │ │ ├── ClubsViewController.h │ │ │ ├── ClubsViewController.m │ │ │ └── Datasource │ │ │ │ ├── ClubsViewController+UITableViewDatasource.h │ │ │ │ └── ClubsViewController+UITableViewDatasource.m │ │ ├── FetchedResultsTableViewController │ │ │ ├── FetchedResultsTableViewController.h │ │ │ └── FetchedResultsTableViewController.m │ │ ├── PlayerProfileViewController │ │ │ ├── PlayerProfileViewController.h │ │ │ └── PlayerProfileViewController.m │ │ ├── PlayersViewController │ │ │ ├── Datasource │ │ │ │ ├── PlayersViewController+UITableViewDatasource.h │ │ │ │ └── PlayersViewController+UITableViewDatasource.m │ │ │ ├── PlayersViewController.h │ │ │ └── PlayersViewController.m │ │ └── SquadViewController │ │ │ ├── Datasource │ │ │ ├── SquadViewController+TableViewDatasource.h │ │ │ └── SquadViewController+TableViewDatasource.m │ │ │ ├── SquadViewController.h │ │ │ └── SquadViewController.m │ ├── Managers │ │ ├── CoreDataClubManager │ │ │ ├── CoreDataClubManager.h │ │ │ └── CoreDataClubManager.m │ │ ├── CoreDataEntityManager │ │ │ ├── CoreDataEntityManager.h │ │ │ └── CoreDataEntityManager.m │ │ ├── CoreDataManager │ │ │ ├── CoreDataManager.h │ │ │ └── CoreDataManager.m │ │ ├── CoreDataPlayerManger │ │ │ ├── CoreDataPlayerManager.h │ │ │ └── CoreDataPlayerManager.m │ │ └── DataImporter │ │ │ ├── DataImporter.h │ │ │ └── DataImporter.m │ ├── Model │ │ ├── Club │ │ │ ├── Club.h │ │ │ └── Club.m │ │ └── Player │ │ │ ├── Player.h │ │ │ └── Player.m │ ├── Utils │ │ └── UIImageView+RoundCorners │ │ │ ├── UIImageView+RoundCorners.h │ │ │ └── UIImageView+RoundCorners.m │ └── View │ │ ├── ClubTableViewCell │ │ ├── ClubTableViewCell.h │ │ └── ClubTableViewCell.m │ │ ├── PlayerTableViewCell │ │ ├── PlayerTableViewCell.h │ │ └── PlayerTableViewCell.m │ │ └── SquadProfileTableViewCell │ │ ├── SquadProfileTableViewCell.h │ │ └── SquadProfileTableViewCell.m ├── CoreData │ └── Model.xcdatamodeld │ │ └── Model.xcdatamodel │ │ └── contents ├── Info.plist ├── PrefixHeader.pch ├── Resources │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ └── Icon-Small@3x.png │ │ ├── club-logos │ │ │ ├── Arsenal-FC-logo.imageset │ │ │ │ ├── Arsenal-FC-icon.png │ │ │ │ └── Contents.json │ │ │ ├── Chelsea-FC-logo.imageset │ │ │ │ ├── Chelsea-FC-icon.png │ │ │ │ └── Contents.json │ │ │ ├── Everton-FC-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Everton-FC-icon.png │ │ │ ├── Liverpool-FC-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Liverpool-FC-icon.png │ │ │ └── Manchester-United-logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Manchester-United-icon.png │ │ ├── persons.imageset │ │ │ ├── Contents.json │ │ │ ├── persons@2x.png │ │ │ └── persons@3x.png │ │ ├── player-pictures │ │ │ ├── aaron_ramsey.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aaron_ramsey.png │ │ │ ├── angel_di_maria.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── angel_di_maria.png │ │ │ ├── daniel_sturridge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── daniel_sturridge.png │ │ │ ├── eden_hazard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── eden_hazard.png │ │ │ ├── jordan_henderson.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── jordan_henderson.png │ │ │ ├── martin_skrtel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── martin_skrtel.png │ │ │ ├── player_placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── player_placeholder.png │ │ │ ├── ross_barkley.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ross_barkley.png │ │ │ ├── steven_gerrard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── steven_gerrard.png │ │ │ └── wayne_rooney.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wayne_rooney.png │ │ └── stadium.imageset │ │ │ ├── Contents.json │ │ │ ├── stadium@2x.png │ │ │ └── stadium@3x.png │ └── db.json └── main.m ├── JenkinsCITests ├── CoreDataTests │ └── CoreDataImportTest.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── CocoaLumberjack │ ├── Classes │ │ ├── CLI │ │ │ ├── CLIColor.h │ │ │ └── CLIColor.m │ │ ├── CocoaLumberjack.h │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogCapture.m │ │ ├── DDASLLogger.h │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDAssertMacros.h │ │ ├── DDFileLogger.h │ │ ├── DDFileLogger.m │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLog.m │ │ ├── DDLogMacros.h │ │ ├── DDTTYLogger.h │ │ ├── DDTTYLogger.m │ │ └── Extensions │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDContextFilterLogFormatter.m │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.m │ │ │ ├── DDMultiFormatter.h │ │ │ └── DDMultiFormatter.m │ ├── LICENSE.txt │ └── README.md ├── CrashlyticsFramework │ ├── Crashlytics.framework │ │ ├── Crashlytics │ │ ├── Headers │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Crashlytics │ │ │ │ ├── Headers │ │ │ │ │ └── Crashlytics.h │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ └── Current │ │ ├── run │ │ └── submit │ ├── LICENSE │ └── README.md ├── Headers │ └── Public │ │ ├── CocoaLumberjack │ │ ├── CLIColor.h │ │ ├── CocoaLumberjack.h │ │ ├── DDASLLogCapture.h │ │ ├── DDASLLogger.h │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAssertMacros.h │ │ ├── DDContextFilterLogFormatter.h │ │ ├── DDDispatchQueueLogFormatter.h │ │ ├── DDFileLogger.h │ │ ├── DDLog+LOGV.h │ │ ├── DDLog.h │ │ ├── DDLogMacros.h │ │ ├── DDMultiFormatter.h │ │ └── DDTTYLogger.h │ │ └── CrashlyticsFramework │ │ └── Crashlytics.h ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── Pods-CocoaLumberjack │ ├── Pods-CocoaLumberjack-Private.xcconfig │ ├── Pods-CocoaLumberjack-dummy.m │ ├── Pods-CocoaLumberjack-prefix.pch │ └── Pods-CocoaLumberjack.xcconfig │ ├── Pods-CrashlyticsFramework │ ├── Pods-CrashlyticsFramework-Private.xcconfig │ ├── Pods-CrashlyticsFramework-dummy.m │ ├── Pods-CrashlyticsFramework-prefix.pch │ └── Pods-CrashlyticsFramework.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /JenkinsCI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JenkinsCI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JenkinsCI.xcodeproj/xcshareddata/xcschemes/JenkinsCI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI.xcodeproj/xcshareddata/xcschemes/JenkinsCI.xcscheme -------------------------------------------------------------------------------- /JenkinsCI.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JenkinsCI/Classes/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/ClubsViewController/ClubsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/ClubsViewController/ClubsViewController.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/ClubsViewController/ClubsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/ClubsViewController/ClubsViewController.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/ClubsViewController/Datasource/ClubsViewController+UITableViewDatasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/ClubsViewController/Datasource/ClubsViewController+UITableViewDatasource.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/ClubsViewController/Datasource/ClubsViewController+UITableViewDatasource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/ClubsViewController/Datasource/ClubsViewController+UITableViewDatasource.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/FetchedResultsTableViewController/FetchedResultsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/FetchedResultsTableViewController/FetchedResultsTableViewController.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/FetchedResultsTableViewController/FetchedResultsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/FetchedResultsTableViewController/FetchedResultsTableViewController.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/PlayerProfileViewController/PlayerProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/PlayerProfileViewController/PlayerProfileViewController.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/PlayerProfileViewController/PlayerProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/PlayerProfileViewController/PlayerProfileViewController.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/PlayersViewController/Datasource/PlayersViewController+UITableViewDatasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/PlayersViewController/Datasource/PlayersViewController+UITableViewDatasource.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/PlayersViewController/Datasource/PlayersViewController+UITableViewDatasource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/PlayersViewController/Datasource/PlayersViewController+UITableViewDatasource.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/PlayersViewController/PlayersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/PlayersViewController/PlayersViewController.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/PlayersViewController/PlayersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/PlayersViewController/PlayersViewController.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/SquadViewController/Datasource/SquadViewController+TableViewDatasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/SquadViewController/Datasource/SquadViewController+TableViewDatasource.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/SquadViewController/Datasource/SquadViewController+TableViewDatasource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/SquadViewController/Datasource/SquadViewController+TableViewDatasource.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/SquadViewController/SquadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/SquadViewController/SquadViewController.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Controllers/SquadViewController/SquadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Controllers/SquadViewController/SquadViewController.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataClubManager/CoreDataClubManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataClubManager/CoreDataClubManager.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataClubManager/CoreDataClubManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataClubManager/CoreDataClubManager.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataEntityManager/CoreDataEntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataEntityManager/CoreDataEntityManager.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataEntityManager/CoreDataEntityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataEntityManager/CoreDataEntityManager.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataManager/CoreDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataManager/CoreDataManager.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataManager/CoreDataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataManager/CoreDataManager.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataPlayerManger/CoreDataPlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataPlayerManger/CoreDataPlayerManager.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/CoreDataPlayerManger/CoreDataPlayerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/CoreDataPlayerManger/CoreDataPlayerManager.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/DataImporter/DataImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/DataImporter/DataImporter.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Managers/DataImporter/DataImporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Managers/DataImporter/DataImporter.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Model/Club/Club.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Model/Club/Club.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Model/Club/Club.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Model/Club/Club.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Model/Player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Model/Player/Player.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Model/Player/Player.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Model/Player/Player.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/Utils/UIImageView+RoundCorners/UIImageView+RoundCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Utils/UIImageView+RoundCorners/UIImageView+RoundCorners.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/Utils/UIImageView+RoundCorners/UIImageView+RoundCorners.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/Utils/UIImageView+RoundCorners/UIImageView+RoundCorners.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/View/ClubTableViewCell/ClubTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/View/ClubTableViewCell/ClubTableViewCell.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/View/ClubTableViewCell/ClubTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/View/ClubTableViewCell/ClubTableViewCell.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/View/PlayerTableViewCell/PlayerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/View/PlayerTableViewCell/PlayerTableViewCell.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/View/PlayerTableViewCell/PlayerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/View/PlayerTableViewCell/PlayerTableViewCell.m -------------------------------------------------------------------------------- /JenkinsCI/Classes/View/SquadProfileTableViewCell/SquadProfileTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/View/SquadProfileTableViewCell/SquadProfileTableViewCell.h -------------------------------------------------------------------------------- /JenkinsCI/Classes/View/SquadProfileTableViewCell/SquadProfileTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Classes/View/SquadProfileTableViewCell/SquadProfileTableViewCell.m -------------------------------------------------------------------------------- /JenkinsCI/CoreData/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/CoreData/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /JenkinsCI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Info.plist -------------------------------------------------------------------------------- /JenkinsCI/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/PrefixHeader.pch -------------------------------------------------------------------------------- /JenkinsCI/Resources/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /JenkinsCI/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Arsenal-FC-logo.imageset/Arsenal-FC-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Arsenal-FC-logo.imageset/Arsenal-FC-icon.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Arsenal-FC-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Arsenal-FC-logo.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Chelsea-FC-logo.imageset/Chelsea-FC-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Chelsea-FC-logo.imageset/Chelsea-FC-icon.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Chelsea-FC-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Chelsea-FC-logo.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Everton-FC-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Everton-FC-logo.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Everton-FC-logo.imageset/Everton-FC-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Everton-FC-logo.imageset/Everton-FC-icon.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Liverpool-FC-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Liverpool-FC-logo.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Liverpool-FC-logo.imageset/Liverpool-FC-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Liverpool-FC-logo.imageset/Liverpool-FC-icon.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Manchester-United-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Manchester-United-logo.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/club-logos/Manchester-United-logo.imageset/Manchester-United-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/club-logos/Manchester-United-logo.imageset/Manchester-United-icon.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/persons.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/persons.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/persons.imageset/persons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/persons.imageset/persons@2x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/persons.imageset/persons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/persons.imageset/persons@3x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/aaron_ramsey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/aaron_ramsey.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/aaron_ramsey.imageset/aaron_ramsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/aaron_ramsey.imageset/aaron_ramsey.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/angel_di_maria.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/angel_di_maria.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/angel_di_maria.imageset/angel_di_maria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/angel_di_maria.imageset/angel_di_maria.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/daniel_sturridge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/daniel_sturridge.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/daniel_sturridge.imageset/daniel_sturridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/daniel_sturridge.imageset/daniel_sturridge.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/eden_hazard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/eden_hazard.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/eden_hazard.imageset/eden_hazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/eden_hazard.imageset/eden_hazard.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/jordan_henderson.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/jordan_henderson.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/jordan_henderson.imageset/jordan_henderson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/jordan_henderson.imageset/jordan_henderson.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/martin_skrtel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/martin_skrtel.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/martin_skrtel.imageset/martin_skrtel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/martin_skrtel.imageset/martin_skrtel.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/player_placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/player_placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/player_placeholder.imageset/player_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/player_placeholder.imageset/player_placeholder.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/ross_barkley.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/ross_barkley.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/ross_barkley.imageset/ross_barkley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/ross_barkley.imageset/ross_barkley.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/steven_gerrard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/steven_gerrard.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/steven_gerrard.imageset/steven_gerrard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/steven_gerrard.imageset/steven_gerrard.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/wayne_rooney.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/wayne_rooney.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/player-pictures/wayne_rooney.imageset/wayne_rooney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/player-pictures/wayne_rooney.imageset/wayne_rooney.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/stadium.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/stadium.imageset/Contents.json -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/stadium.imageset/stadium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/stadium.imageset/stadium@2x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/Images.xcassets/stadium.imageset/stadium@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/Images.xcassets/stadium.imageset/stadium@3x.png -------------------------------------------------------------------------------- /JenkinsCI/Resources/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/Resources/db.json -------------------------------------------------------------------------------- /JenkinsCI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCI/main.m -------------------------------------------------------------------------------- /JenkinsCITests/CoreDataTests/CoreDataImportTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCITests/CoreDataTests/CoreDataImportTest.m -------------------------------------------------------------------------------- /JenkinsCITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/JenkinsCITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/CLI/CLIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/CLI/CLIColor.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/CLI/CLIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/CLI/CLIColor.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/CocoaLumberjack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/CocoaLumberjack.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDASLLogCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDASLLogCapture.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDASLLogCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDASLLogCapture.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDASLLogger.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDASLLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDASLLogger.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDAbstractDatabaseLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDAbstractDatabaseLogger.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDAssertMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDAssertMacros.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDFileLogger.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDFileLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDFileLogger.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDLog+LOGV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDLog+LOGV.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDLog.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDLog.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDLogMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDLogMacros.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDTTYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDTTYLogger.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/DDTTYLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/DDTTYLogger.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/Extensions/DDMultiFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/Classes/Extensions/DDMultiFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/Classes/Extensions/DDMultiFormatter.m -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/LICENSE.txt -------------------------------------------------------------------------------- /Pods/CocoaLumberjack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CocoaLumberjack/README.md -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- 1 | Versions/Current/Crashlytics -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/Crashlytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Versions/A/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/Crashlytics.framework/Versions/A/Crashlytics -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Versions/A/Headers/Crashlytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/Crashlytics.framework/Versions/A/Headers/Crashlytics.h -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/Crashlytics.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/Crashlytics.framework/run -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/LICENSE -------------------------------------------------------------------------------- /Pods/CrashlyticsFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/CrashlyticsFramework/README.md -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/CLIColor.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/CLI/CLIColor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/CocoaLumberjack.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/CocoaLumberjack.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDASLLogCapture.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDASLLogCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDASLLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDAssertMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDAssertMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDFileLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLog+LOGV.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLog.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDLogMacros.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDLogMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaLumberjack/Classes/DDTTYLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Public/CrashlyticsFramework/Crashlytics.h: -------------------------------------------------------------------------------- 1 | ../../../CrashlyticsFramework/Crashlytics.framework/Versions/A/Headers/Crashlytics.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CocoaLumberjack/Pods-CocoaLumberjack.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods-CrashlyticsFramework/Pods-CrashlyticsFramework.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyupa/JenkinsCI-iOS/HEAD/README.md --------------------------------------------------------------------------------