├── .gitignore ├── .travis.yml ├── Example ├── HCBorderMe.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── HCBorderMe-Example.xcscheme ├── HCBorderMe.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── HCBorderMe │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── pexels-photo-1144276.imageset │ │ │ ├── Contents.json │ │ │ └── pexels-photo-1144276.jpeg │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── HCBorderMe.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── HCBorderMe │ │ ├── HCBorderMe-dummy.m │ │ ├── HCBorderMe-prefix.pch │ │ ├── HCBorderMe-umbrella.h │ │ ├── HCBorderMe.modulemap │ │ ├── HCBorderMe.xcconfig │ │ └── Info.plist │ │ ├── Pods-HCBorderMe_Example │ │ ├── Info.plist │ │ ├── Pods-HCBorderMe_Example-acknowledgements.markdown │ │ ├── Pods-HCBorderMe_Example-acknowledgements.plist │ │ ├── Pods-HCBorderMe_Example-dummy.m │ │ ├── Pods-HCBorderMe_Example-frameworks.sh │ │ ├── Pods-HCBorderMe_Example-resources.sh │ │ ├── Pods-HCBorderMe_Example-umbrella.h │ │ ├── Pods-HCBorderMe_Example.debug.xcconfig │ │ ├── Pods-HCBorderMe_Example.modulemap │ │ └── Pods-HCBorderMe_Example.release.xcconfig │ │ └── Pods-HCBorderMe_Tests │ │ ├── Info.plist │ │ ├── Pods-HCBorderMe_Tests-acknowledgements.markdown │ │ ├── Pods-HCBorderMe_Tests-acknowledgements.plist │ │ ├── Pods-HCBorderMe_Tests-dummy.m │ │ ├── Pods-HCBorderMe_Tests-frameworks.sh │ │ ├── Pods-HCBorderMe_Tests-resources.sh │ │ ├── Pods-HCBorderMe_Tests-umbrella.h │ │ ├── Pods-HCBorderMe_Tests.debug.xcconfig │ │ ├── Pods-HCBorderMe_Tests.modulemap │ │ └── Pods-HCBorderMe_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── HCBorderMe.podspec ├── HCBorderMe ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── HCBorderMe.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/HCBorderMe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HCBorderMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HCBorderMe.xcodeproj/xcshareddata/xcschemes/HCBorderMe-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe.xcodeproj/xcshareddata/xcschemes/HCBorderMe-Example.xcscheme -------------------------------------------------------------------------------- /Example/HCBorderMe.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HCBorderMe.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/HCBorderMe/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/AppDelegate.swift -------------------------------------------------------------------------------- /Example/HCBorderMe/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/HCBorderMe/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HCBorderMe/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HCBorderMe/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/HCBorderMe/Images.xcassets/pexels-photo-1144276.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Images.xcassets/pexels-photo-1144276.imageset/Contents.json -------------------------------------------------------------------------------- /Example/HCBorderMe/Images.xcassets/pexels-photo-1144276.imageset/pexels-photo-1144276.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Images.xcassets/pexels-photo-1144276.imageset/pexels-photo-1144276.jpeg -------------------------------------------------------------------------------- /Example/HCBorderMe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/Info.plist -------------------------------------------------------------------------------- /Example/HCBorderMe/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/HCBorderMe/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HCBorderMe.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Local Podspecs/HCBorderMe.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HCBorderMe/HCBorderMe-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/HCBorderMe/HCBorderMe-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HCBorderMe/HCBorderMe-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/HCBorderMe/HCBorderMe-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HCBorderMe/HCBorderMe-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/HCBorderMe/HCBorderMe-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HCBorderMe/HCBorderMe.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/HCBorderMe/HCBorderMe.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HCBorderMe/HCBorderMe.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/HCBorderMe/HCBorderMe.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HCBorderMe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/HCBorderMe/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Example/Pods-HCBorderMe_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Pods/Target Support Files/Pods-HCBorderMe_Tests/Pods-HCBorderMe_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /HCBorderMe.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/HCBorderMe.podspec -------------------------------------------------------------------------------- /HCBorderMe/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HCBorderMe/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HCBorderMe/Classes/HCBorderMe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/HCBorderMe/Classes/HCBorderMe.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/HCBorderMe/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------