├── .gitignore ├── LICENSE.md ├── README.md ├── Screenshots ├── Banner.png ├── F3264F08-0189-4888-9BD3-4FFF7BCEFF33.png └── gif6.gif ├── XcodeWay.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── XcodeWayApp.xcscheme │ └── XcodeWayExtensions.xcscheme ├── XcodeWayApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128@1x.png │ │ ├── icon_128@2x.png │ │ ├── icon_16@1x.png │ │ ├── icon_16@2x.png │ │ ├── icon_256@1x.png │ │ ├── icon_256@2x.png │ │ ├── icon_32@1x.png │ │ ├── icon_32@2x.png │ │ ├── icon_512@1x.png │ │ └── icon_512@2x.png │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── XcodeWayApp.entitlements ├── XcodeWayExtensions ├── Helper │ ├── Helper.swift │ ├── MenuManager.swift │ └── ScriptRunner.swift ├── Info.plist ├── Navigator │ ├── AboutNavigator.swift │ ├── ArchivesFolderNavigator.swift │ ├── CleanDerivedData.swift │ ├── CodeSnippetFolderNavigator.swift │ ├── DerivedDataNavigator.swift │ ├── DeviceSupportFolderNavigator.swift │ ├── DoPodInstall.swift │ ├── DoPodUpdate.swift │ ├── DoTermnalOpen.swift │ ├── Navigator.swift │ ├── Open Document.swift │ ├── OpenGitHubNavigator.swift │ ├── ProjectFolderNavigator.swift │ └── ProvisioningProfileFolderNavigator.swift ├── Script │ └── XcodeWayScript.scpt ├── SourceEditorCommand.swift ├── SourceEditorExtension.swift └── XcodeWayExtensions.entitlements ├── _config.yml └── install.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/Screenshots/Banner.png -------------------------------------------------------------------------------- /Screenshots/F3264F08-0189-4888-9BD3-4FFF7BCEFF33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/Screenshots/F3264F08-0189-4888-9BD3-4FFF7BCEFF33.png -------------------------------------------------------------------------------- /Screenshots/gif6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/Screenshots/gif6.gif -------------------------------------------------------------------------------- /XcodeWay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayApp.xcscheme -------------------------------------------------------------------------------- /XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayExtensions.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWay.xcodeproj/xcshareddata/xcschemes/XcodeWayExtensions.xcscheme -------------------------------------------------------------------------------- /XcodeWayApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/AppDelegate.swift -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_128@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_16@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_256@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@1x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png -------------------------------------------------------------------------------- /XcodeWayApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XcodeWayApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XcodeWayApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/Info.plist -------------------------------------------------------------------------------- /XcodeWayApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/ViewController.swift -------------------------------------------------------------------------------- /XcodeWayApp/XcodeWayApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayApp/XcodeWayApp.entitlements -------------------------------------------------------------------------------- /XcodeWayExtensions/Helper/Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Helper/Helper.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Helper/MenuManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Helper/MenuManager.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Helper/ScriptRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Helper/ScriptRunner.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Info.plist -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/AboutNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/AboutNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ArchivesFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ArchivesFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/CleanDerivedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/CleanDerivedData.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/CodeSnippetFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/CodeSnippetFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DerivedDataNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DerivedDataNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DeviceSupportFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DeviceSupportFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DoPodInstall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DoPodInstall.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DoPodUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DoPodUpdate.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/DoTermnalOpen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/DoTermnalOpen.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/Navigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/Navigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/Open Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/Open Document.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/OpenGitHubNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/OpenGitHubNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ProjectFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ProjectFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Navigator/ProvisioningProfileFolderNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Navigator/ProvisioningProfileFolderNavigator.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/Script/XcodeWayScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/Script/XcodeWayScript.scpt -------------------------------------------------------------------------------- /XcodeWayExtensions/SourceEditorCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/SourceEditorCommand.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/SourceEditorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/SourceEditorExtension.swift -------------------------------------------------------------------------------- /XcodeWayExtensions/XcodeWayExtensions.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/XcodeWayExtensions/XcodeWayExtensions.entitlements -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/_config.yml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GesanTung/XcodeWay/HEAD/install.sh --------------------------------------------------------------------------------