├── .gitignore ├── GitHubSearch.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── GitHubSearch.xcworkspace └── contents.xcworkspacedata ├── GitHubSearch ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Repo.swift └── ViewController.swift ├── LICENSE ├── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /GitHubSearch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GitHubSearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GitHubSearch.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GitHubSearch/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/AppDelegate.swift -------------------------------------------------------------------------------- /GitHubSearch/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GitHubSearch/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GitHubSearch/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GitHubSearch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/Info.plist -------------------------------------------------------------------------------- /GitHubSearch/Repo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/Repo.swift -------------------------------------------------------------------------------- /GitHubSearch/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/GitHubSearch/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icanzilb/RealmGitHubSearchRxDemo/HEAD/README.md --------------------------------------------------------------------------------