├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── Brewfile ├── Brewfile.lock.json ├── Configuration ├── Resources │ └── Colors.json └── Templates │ ├── assets.stencil │ ├── colors.stencil │ └── strings.stencil ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Makefile ├── Podfile ├── Podfile.lock ├── README.md ├── Sources ├── App │ ├── Strings │ │ ├── Strings+Utilities.swift │ │ └── Translation.swift │ └── SupportingFiles │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-20.png │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-29.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83_5@2x.png │ │ │ └── ios-marketing.png │ │ ├── Contents.json │ │ ├── arrow-left.imageset │ │ │ ├── Contents.json │ │ │ └── arrow-left.png │ │ ├── heart.imageset │ │ │ ├── Contents.json │ │ │ └── heart.png │ │ ├── movie.imageset │ │ │ ├── Contents.json │ │ │ └── movie.png │ │ ├── palette.imageset │ │ │ ├── Contents.json │ │ │ └── palette.png │ │ ├── photo.imageset │ │ │ ├── Contents.json │ │ │ └── photo.png │ │ ├── sample.imageset │ │ │ ├── Contents.json │ │ │ └── boomerang_nobkg.png │ │ ├── search.imageset │ │ │ ├── Contents.json │ │ │ └── search.png │ │ ├── settings.imageset │ │ │ ├── Contents.json │ │ │ └── settings.png │ │ ├── ticket.imageset │ │ │ ├── Contents.json │ │ │ └── ticket.png │ │ ├── user.imageset │ │ │ ├── Contents.json │ │ │ └── user.png │ │ ├── users.imageset │ │ │ ├── Contents.json │ │ │ └── users.png │ │ └── x.imageset │ │ │ ├── Contents.json │ │ │ └── x.png │ │ ├── Base.lproj │ │ └── Translations.json │ │ ├── Generated │ │ ├── Assets.swift │ │ ├── Colors.swift │ │ └── Strings.swift │ │ ├── Info.plist │ │ ├── ViewController.swift │ │ └── en.lproj │ │ └── Translations.json └── Core │ ├── Core.swift │ └── Info.plist ├── project.yml ├── slides.pdf └── swiftgen.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.2 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /Configuration/Resources/Colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Configuration/Resources/Colors.json -------------------------------------------------------------------------------- /Configuration/Templates/assets.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Configuration/Templates/assets.stencil -------------------------------------------------------------------------------- /Configuration/Templates/colors.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Configuration/Templates/colors.stencil -------------------------------------------------------------------------------- /Configuration/Templates/strings.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Configuration/Templates/strings.stencil -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Makefile -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/README.md -------------------------------------------------------------------------------- /Sources/App/Strings/Strings+Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/Strings/Strings+Utilities.swift -------------------------------------------------------------------------------- /Sources/App/Strings/Translation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/Strings/Translation.swift -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/AppDelegate.swift -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-83_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-83_5@2x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/arrow-left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/arrow-left.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/arrow-left.imageset/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/arrow-left.imageset/arrow-left.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/heart.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/heart.imageset/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/heart.imageset/heart.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/movie.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/movie.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/movie.imageset/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/movie.imageset/movie.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/palette.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/palette.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/palette.imageset/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/palette.imageset/palette.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/photo.imageset/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/photo.imageset/photo.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/sample.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/sample.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/sample.imageset/boomerang_nobkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/sample.imageset/boomerang_nobkg.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/settings.imageset/settings.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/ticket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/ticket.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/ticket.imageset/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/ticket.imageset/ticket.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/user.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/user.imageset/user.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/users.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/users.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/users.imageset/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/users.imageset/users.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/x.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Assets.xcassets/x.imageset/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Assets.xcassets/x.imageset/x.png -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Base.lproj/Translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Base.lproj/Translations.json -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Generated/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Generated/Assets.swift -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Generated/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Generated/Colors.swift -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Generated/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Generated/Strings.swift -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/ViewController.swift -------------------------------------------------------------------------------- /Sources/App/SupportingFiles/en.lproj/Translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/App/SupportingFiles/en.lproj/Translations.json -------------------------------------------------------------------------------- /Sources/Core/Core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/Core/Core.swift -------------------------------------------------------------------------------- /Sources/Core/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/Sources/Core/Info.plist -------------------------------------------------------------------------------- /project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/project.yml -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/slides.pdf -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanomondino/CommandLineAutomations/HEAD/swiftgen.yml --------------------------------------------------------------------------------