├── .gitignore ├── Demo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── 120-1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 180.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 58-1.png │ │ ├── 58.png │ │ ├── 76.png │ │ ├── 80-1.png │ │ ├── 80.png │ │ ├── 87.png │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Images │ ├── LaunchUmage_glyptodon.png │ └── LaunchUmage_ground.png ├── Info.plist └── ViewController.swift ├── Distrib └── GlyptodonDistrib.swift ├── Glyptodon.podspec ├── Glyptodon.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ ├── ConcatenateSwift.xcscheme │ │ ├── Demo.xcscheme │ │ ├── Glyptodon.xcscheme │ │ └── GlyptodonTests.xcscheme └── xcuserdata │ └── evgenyneu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Glyptodon ├── Glyptodon.h ├── Glyptodon.swift ├── GlyptodonView.swift ├── Info.plist ├── Styles │ ├── GlyptodonButtonDefaultStyles.swift │ ├── GlyptodonButtonStyle.swift │ ├── GlyptodonStyle.swift │ ├── GlyptodonTitleDefaultStyles.swift │ ├── GlyptodonTitleStyle.swift │ ├── GlyptodonViewDefaultStyles.swift │ └── GlyptodonViewStyle.swift ├── UIView+Glyptodon.swift └── Utils │ ├── GlyptodonColor.swift │ └── TegAutolayoutConstraints.swift ├── GlyptodonTests ├── GlyptodonTests.swift ├── GlyptodonViewTests.swift ├── Info.plist ├── TestHelpers │ └── XCTestCase+Helpers.swift ├── UIView+GlyptodonTests.swift └── Utils │ └── GlyptodonColorTests.swift ├── Graphics ├── AppIcons │ ├── 1024.png │ ├── 120.png │ ├── 152.png │ ├── 180.png │ ├── 29.png │ ├── 40.png │ ├── 58.png │ ├── 76.png │ ├── 80.png │ └── 87.png ├── Drawings │ └── Glyptodon_Riha2000.jpg ├── Glyptodon.sketch ├── Glyptodon_in_space_logo_3.png ├── Glyptodon_logo.png ├── LaunchUmage_glyptodon.png ├── LaunchUmage_ground.png └── screenshots │ ├── glyptodon_demo_ios_app.png │ └── glyptodon_ios_screenshot_2.png ├── LICENSE ├── README.md └── scripts └── concatenate_swift_files.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Images/LaunchUmage_glyptodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Images/LaunchUmage_glyptodon.png -------------------------------------------------------------------------------- /Demo/Images/LaunchUmage_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Images/LaunchUmage_ground.png -------------------------------------------------------------------------------- /Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Demo/ViewController.swift -------------------------------------------------------------------------------- /Distrib/GlyptodonDistrib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Distrib/GlyptodonDistrib.swift -------------------------------------------------------------------------------- /Glyptodon.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.podspec -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/xcshareddata/xcschemes/ConcatenateSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/xcshareddata/xcschemes/ConcatenateSwift.xcscheme -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/xcshareddata/xcschemes/Glyptodon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/xcshareddata/xcschemes/Glyptodon.xcscheme -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/xcshareddata/xcschemes/GlyptodonTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/xcshareddata/xcschemes/GlyptodonTests.xcscheme -------------------------------------------------------------------------------- /Glyptodon.xcodeproj/xcuserdata/evgenyneu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon.xcodeproj/xcuserdata/evgenyneu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Glyptodon/Glyptodon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Glyptodon.h -------------------------------------------------------------------------------- /Glyptodon/Glyptodon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Glyptodon.swift -------------------------------------------------------------------------------- /Glyptodon/GlyptodonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/GlyptodonView.swift -------------------------------------------------------------------------------- /Glyptodon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Info.plist -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonButtonDefaultStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonButtonDefaultStyles.swift -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonButtonStyle.swift -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonStyle.swift -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonTitleDefaultStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonTitleDefaultStyles.swift -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonTitleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonTitleStyle.swift -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonViewDefaultStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonViewDefaultStyles.swift -------------------------------------------------------------------------------- /Glyptodon/Styles/GlyptodonViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Styles/GlyptodonViewStyle.swift -------------------------------------------------------------------------------- /Glyptodon/UIView+Glyptodon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/UIView+Glyptodon.swift -------------------------------------------------------------------------------- /Glyptodon/Utils/GlyptodonColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Utils/GlyptodonColor.swift -------------------------------------------------------------------------------- /Glyptodon/Utils/TegAutolayoutConstraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Glyptodon/Utils/TegAutolayoutConstraints.swift -------------------------------------------------------------------------------- /GlyptodonTests/GlyptodonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/GlyptodonTests/GlyptodonTests.swift -------------------------------------------------------------------------------- /GlyptodonTests/GlyptodonViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/GlyptodonTests/GlyptodonViewTests.swift -------------------------------------------------------------------------------- /GlyptodonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/GlyptodonTests/Info.plist -------------------------------------------------------------------------------- /GlyptodonTests/TestHelpers/XCTestCase+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/GlyptodonTests/TestHelpers/XCTestCase+Helpers.swift -------------------------------------------------------------------------------- /GlyptodonTests/UIView+GlyptodonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/GlyptodonTests/UIView+GlyptodonTests.swift -------------------------------------------------------------------------------- /GlyptodonTests/Utils/GlyptodonColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/GlyptodonTests/Utils/GlyptodonColorTests.swift -------------------------------------------------------------------------------- /Graphics/AppIcons/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/1024.png -------------------------------------------------------------------------------- /Graphics/AppIcons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/120.png -------------------------------------------------------------------------------- /Graphics/AppIcons/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/152.png -------------------------------------------------------------------------------- /Graphics/AppIcons/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/180.png -------------------------------------------------------------------------------- /Graphics/AppIcons/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/29.png -------------------------------------------------------------------------------- /Graphics/AppIcons/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/40.png -------------------------------------------------------------------------------- /Graphics/AppIcons/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/58.png -------------------------------------------------------------------------------- /Graphics/AppIcons/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/76.png -------------------------------------------------------------------------------- /Graphics/AppIcons/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/80.png -------------------------------------------------------------------------------- /Graphics/AppIcons/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/AppIcons/87.png -------------------------------------------------------------------------------- /Graphics/Drawings/Glyptodon_Riha2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/Drawings/Glyptodon_Riha2000.jpg -------------------------------------------------------------------------------- /Graphics/Glyptodon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/Glyptodon.sketch -------------------------------------------------------------------------------- /Graphics/Glyptodon_in_space_logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/Glyptodon_in_space_logo_3.png -------------------------------------------------------------------------------- /Graphics/Glyptodon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/Glyptodon_logo.png -------------------------------------------------------------------------------- /Graphics/LaunchUmage_glyptodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/LaunchUmage_glyptodon.png -------------------------------------------------------------------------------- /Graphics/LaunchUmage_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/LaunchUmage_ground.png -------------------------------------------------------------------------------- /Graphics/screenshots/glyptodon_demo_ios_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/screenshots/glyptodon_demo_ios_app.png -------------------------------------------------------------------------------- /Graphics/screenshots/glyptodon_ios_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/Graphics/screenshots/glyptodon_ios_screenshot_2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/README.md -------------------------------------------------------------------------------- /scripts/concatenate_swift_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgenyneu/Glyptodon/HEAD/scripts/concatenate_swift_files.sh --------------------------------------------------------------------------------