├── .gitignore ├── .swift-version ├── LICENSE ├── README.md ├── UbiqArchView.podspec └── UbiqArchView ├── .DS_Store ├── UbiqArchView.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── UbiqArchView ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── source │ └── UbiqArchView.swift ├── UbiqArchViewTests ├── Info.plist └── UbiqArchViewTests.swift └── UbiqArchViewUITests ├── Info.plist └── UbiqArchViewUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/README.md -------------------------------------------------------------------------------- /UbiqArchView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView.podspec -------------------------------------------------------------------------------- /UbiqArchView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/.DS_Store -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/AppDelegate.swift -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/Info.plist -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/ViewController.swift -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchView/source/UbiqArchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchView/source/UbiqArchView.swift -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchViewTests/Info.plist -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchViewTests/UbiqArchViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchViewTests/UbiqArchViewTests.swift -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchViewUITests/Info.plist -------------------------------------------------------------------------------- /UbiqArchView/UbiqArchViewUITests/UbiqArchViewUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabrahamyan/UbiqArchView/HEAD/UbiqArchView/UbiqArchViewUITests/UbiqArchViewUITests.swift --------------------------------------------------------------------------------