├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Logo.jpg ├── Package.swift ├── README.md ├── SafeBrowsing.podspec ├── SafeBrowsing.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SafeBrowsing.xcscheme ├── SafeBrowsing.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── SafeBrowsing ├── Info.plist ├── SafeBrowsing.h ├── SafeBrowsing.swift ├── SafeBrowsingModels.swift ├── UIApplication+SafeBrowsing.swift └── UIViewController+SafeBrowsing.swift └── SafeBrowsingTests ├── Info.plist └── SafeBrowsingTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/Logo.jpg -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/README.md -------------------------------------------------------------------------------- /SafeBrowsing.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing.podspec -------------------------------------------------------------------------------- /SafeBrowsing.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SafeBrowsing.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SafeBrowsing.xcodeproj/xcshareddata/xcschemes/SafeBrowsing.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing.xcodeproj/xcshareddata/xcschemes/SafeBrowsing.xcscheme -------------------------------------------------------------------------------- /SafeBrowsing.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SafeBrowsing.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SafeBrowsing/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing/Info.plist -------------------------------------------------------------------------------- /SafeBrowsing/SafeBrowsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing/SafeBrowsing.h -------------------------------------------------------------------------------- /SafeBrowsing/SafeBrowsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing/SafeBrowsing.swift -------------------------------------------------------------------------------- /SafeBrowsing/SafeBrowsingModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing/SafeBrowsingModels.swift -------------------------------------------------------------------------------- /SafeBrowsing/UIApplication+SafeBrowsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing/UIApplication+SafeBrowsing.swift -------------------------------------------------------------------------------- /SafeBrowsing/UIViewController+SafeBrowsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsing/UIViewController+SafeBrowsing.swift -------------------------------------------------------------------------------- /SafeBrowsingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsingTests/Info.plist -------------------------------------------------------------------------------- /SafeBrowsingTests/SafeBrowsingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexruperez/SafeBrowsing/HEAD/SafeBrowsingTests/SafeBrowsingTests.swift --------------------------------------------------------------------------------