├── .gitignore ├── Johnny macOS ├── Info.plist ├── Johnny macOS.h └── macOS.modulemap ├── Johnny tvOS ├── Info.plist ├── Johnny tvOS.h └── tvOS.modulemap ├── Johnny watchOS ├── Info.plist ├── Johnny watchOS.h └── watchOS.modulemap ├── Johnny.podspec ├── Johnny.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Johnny iOS.xcscheme │ ├── Johnny macOS.xcscheme │ ├── Johnny tvOS.xcscheme │ └── Johnny watchOS.xcscheme ├── Johnny ├── Disk.swift ├── Extensions │ ├── UIButton+Johnny.swift │ ├── UIColor+Johnny.swift │ ├── UIImage+Johnny.swift │ ├── UIImageView+Johnny.swift │ ├── common │ │ └── Foundation+Johnny.swift │ ├── macOS │ │ └── AppKit+Johnny.swift │ └── watchOS │ │ └── WatchKit+Johnny.swift ├── Info.plist ├── Johnny.h ├── Johnny.swift ├── Log.swift ├── Memory.swift └── johnny-logo.png ├── JohnnyTests ├── Info.plist ├── JohnnyDiskTests.swift └── JohnnyMemoryTests.swift ├── LICENSE ├── README.md ├── johhny-logo.sketch ├── language.svg ├── license.svg ├── platform.svg ├── pod.svg └── tags.sketch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/.gitignore -------------------------------------------------------------------------------- /Johnny macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny macOS/Info.plist -------------------------------------------------------------------------------- /Johnny macOS/Johnny macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny macOS/Johnny macOS.h -------------------------------------------------------------------------------- /Johnny macOS/macOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny macOS/macOS.modulemap -------------------------------------------------------------------------------- /Johnny tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny tvOS/Info.plist -------------------------------------------------------------------------------- /Johnny tvOS/Johnny tvOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny tvOS/Johnny tvOS.h -------------------------------------------------------------------------------- /Johnny tvOS/tvOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny tvOS/tvOS.modulemap -------------------------------------------------------------------------------- /Johnny watchOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny watchOS/Info.plist -------------------------------------------------------------------------------- /Johnny watchOS/Johnny watchOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny watchOS/Johnny watchOS.h -------------------------------------------------------------------------------- /Johnny watchOS/watchOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny watchOS/watchOS.modulemap -------------------------------------------------------------------------------- /Johnny.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.podspec -------------------------------------------------------------------------------- /Johnny.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Johnny.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Johnny.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Johnny.xcodeproj/xcshareddata/xcschemes/Johnny iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/xcshareddata/xcschemes/Johnny iOS.xcscheme -------------------------------------------------------------------------------- /Johnny.xcodeproj/xcshareddata/xcschemes/Johnny macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/xcshareddata/xcschemes/Johnny macOS.xcscheme -------------------------------------------------------------------------------- /Johnny.xcodeproj/xcshareddata/xcschemes/Johnny tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/xcshareddata/xcschemes/Johnny tvOS.xcscheme -------------------------------------------------------------------------------- /Johnny.xcodeproj/xcshareddata/xcschemes/Johnny watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny.xcodeproj/xcshareddata/xcschemes/Johnny watchOS.xcscheme -------------------------------------------------------------------------------- /Johnny/Disk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Disk.swift -------------------------------------------------------------------------------- /Johnny/Extensions/UIButton+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/UIButton+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Extensions/UIColor+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/UIColor+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Extensions/UIImage+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/UIImage+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Extensions/UIImageView+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/UIImageView+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Extensions/common/Foundation+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/common/Foundation+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Extensions/macOS/AppKit+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/macOS/AppKit+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Extensions/watchOS/WatchKit+Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Extensions/watchOS/WatchKit+Johnny.swift -------------------------------------------------------------------------------- /Johnny/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Info.plist -------------------------------------------------------------------------------- /Johnny/Johnny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Johnny.h -------------------------------------------------------------------------------- /Johnny/Johnny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Johnny.swift -------------------------------------------------------------------------------- /Johnny/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Log.swift -------------------------------------------------------------------------------- /Johnny/Memory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/Memory.swift -------------------------------------------------------------------------------- /Johnny/johnny-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/Johnny/johnny-logo.png -------------------------------------------------------------------------------- /JohnnyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/JohnnyTests/Info.plist -------------------------------------------------------------------------------- /JohnnyTests/JohnnyDiskTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/JohnnyTests/JohnnyDiskTests.swift -------------------------------------------------------------------------------- /JohnnyTests/JohnnyMemoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/JohnnyTests/JohnnyMemoryTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/README.md -------------------------------------------------------------------------------- /johhny-logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/johhny-logo.sketch -------------------------------------------------------------------------------- /language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/language.svg -------------------------------------------------------------------------------- /license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/license.svg -------------------------------------------------------------------------------- /platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/platform.svg -------------------------------------------------------------------------------- /pod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/pod.svg -------------------------------------------------------------------------------- /tags.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zolomatok/Johnny/HEAD/tags.sketch --------------------------------------------------------------------------------