├── .gitignore ├── .travis.yml ├── BigBrother.podspec ├── BigBrother.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── BigBrother.xcscheme ├── BigBrother ├── BigBrother.h ├── BigBrother.swift ├── Info.plist └── Manager.swift ├── BigBrotherTests ├── BigBrotherTests.swift ├── Info.plist └── URLProtocolTests.swift ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/.travis.yml -------------------------------------------------------------------------------- /BigBrother.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother.podspec -------------------------------------------------------------------------------- /BigBrother.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BigBrother.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BigBrother.xcodeproj/xcshareddata/xcschemes/BigBrother.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother.xcodeproj/xcshareddata/xcschemes/BigBrother.xcscheme -------------------------------------------------------------------------------- /BigBrother/BigBrother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother/BigBrother.h -------------------------------------------------------------------------------- /BigBrother/BigBrother.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother/BigBrother.swift -------------------------------------------------------------------------------- /BigBrother/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother/Info.plist -------------------------------------------------------------------------------- /BigBrother/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrother/Manager.swift -------------------------------------------------------------------------------- /BigBrotherTests/BigBrotherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrotherTests/BigBrotherTests.swift -------------------------------------------------------------------------------- /BigBrotherTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrotherTests/Info.plist -------------------------------------------------------------------------------- /BigBrotherTests/URLProtocolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/BigBrotherTests/URLProtocolTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofabri/BigBrother/HEAD/README.md --------------------------------------------------------------------------------