├── .gitignore ├── Kittygram.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Kittygram.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Kittygram ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Coordinator │ └── Cordinator.swift ├── Info.plist ├── Networking │ ├── Endpoints │ │ └── GitHub.swift │ └── Models │ │ ├── RepositoryModel.swift │ │ └── UserModel.swift └── ViewControllers │ ├── Dashboard │ ├── DashboardViewController.swift │ ├── DashboardViewController.xib │ └── Views │ │ ├── KittyTableViewCell.swift │ │ └── KittyTableViewCell.xib │ ├── KittyDetails │ ├── KittyDetailsViewController.swift │ └── KittyDetailsViewController.xib │ └── PayMoneyPlease │ ├── PayMoneyPleaseViewController.swift │ └── PayMoneyPleaseViewController.xib ├── KittygramTests ├── Info.plist └── KittygramTests.swift ├── Podfile ├── Podfile.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/.gitignore -------------------------------------------------------------------------------- /Kittygram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Kittygram.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Kittygram.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Kittygram.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Kittygram/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/AppDelegate.swift -------------------------------------------------------------------------------- /Kittygram/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Kittygram/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Kittygram/Coordinator/Cordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Coordinator/Cordinator.swift -------------------------------------------------------------------------------- /Kittygram/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Info.plist -------------------------------------------------------------------------------- /Kittygram/Networking/Endpoints/GitHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Networking/Endpoints/GitHub.swift -------------------------------------------------------------------------------- /Kittygram/Networking/Models/RepositoryModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Networking/Models/RepositoryModel.swift -------------------------------------------------------------------------------- /Kittygram/Networking/Models/UserModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/Networking/Models/UserModel.swift -------------------------------------------------------------------------------- /Kittygram/ViewControllers/Dashboard/DashboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/Dashboard/DashboardViewController.swift -------------------------------------------------------------------------------- /Kittygram/ViewControllers/Dashboard/DashboardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/Dashboard/DashboardViewController.xib -------------------------------------------------------------------------------- /Kittygram/ViewControllers/Dashboard/Views/KittyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/Dashboard/Views/KittyTableViewCell.swift -------------------------------------------------------------------------------- /Kittygram/ViewControllers/Dashboard/Views/KittyTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/Dashboard/Views/KittyTableViewCell.xib -------------------------------------------------------------------------------- /Kittygram/ViewControllers/KittyDetails/KittyDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/KittyDetails/KittyDetailsViewController.swift -------------------------------------------------------------------------------- /Kittygram/ViewControllers/KittyDetails/KittyDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/KittyDetails/KittyDetailsViewController.xib -------------------------------------------------------------------------------- /Kittygram/ViewControllers/PayMoneyPlease/PayMoneyPleaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/PayMoneyPlease/PayMoneyPleaseViewController.swift -------------------------------------------------------------------------------- /Kittygram/ViewControllers/PayMoneyPlease/PayMoneyPleaseViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Kittygram/ViewControllers/PayMoneyPlease/PayMoneyPleaseViewController.xib -------------------------------------------------------------------------------- /KittygramTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/KittygramTests/Info.plist -------------------------------------------------------------------------------- /KittygramTests/KittygramTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/KittygramTests/KittygramTests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshinejr/Kittygram/HEAD/README.md --------------------------------------------------------------------------------