├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NAME.podspec ├── POD_LICENSE ├── POD_README.md ├── Pod ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── README.md ├── cleanBranch.sh ├── cleanPod.sh ├── configure ├── download_zip.sh ├── lint_binary.sh ├── lint_source.sh ├── merge_request.sh ├── pod_package.sh ├── release_pb_app.sh ├── setup ├── ConfigureSwift.rb ├── ConfigureiOS.rb ├── MessageBank.rb ├── ProjectManipulator.rb ├── TemplateConfigurator.rb └── test_examples │ ├── kiwi.m │ ├── quick.swift │ ├── specta.m │ ├── xctest.m │ └── xctest.swift ├── templates ├── ios │ └── Example │ │ ├── PROJECT.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PROJECT.xcscheme │ │ ├── PROJECT │ │ ├── CPDAppDelegate.h │ │ ├── CPDAppDelegate.m │ │ ├── CPDViewController.h │ │ ├── CPDViewController.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Launch Screen.storyboard │ │ ├── Main.storyboard │ │ ├── PROJECT-Info.plist │ │ ├── PROJECT-Prefix.pch │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ │ ├── Podfile │ │ └── Tests │ │ ├── Tests-Info.plist │ │ ├── Tests-Prefix.pch │ │ ├── Tests.m │ │ └── en.lproj │ │ └── InfoPlist.strings └── swift │ └── Example │ ├── PROJECT.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PROJECT.xcscheme │ ├── PROJECT │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift │ ├── Podfile │ └── Tests │ ├── Info.plist │ └── Tests.swift └── zip.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/LICENSE -------------------------------------------------------------------------------- /NAME.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/NAME.podspec -------------------------------------------------------------------------------- /POD_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/POD_LICENSE -------------------------------------------------------------------------------- /POD_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/POD_README.md -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/README.md -------------------------------------------------------------------------------- /cleanBranch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/cleanBranch.sh -------------------------------------------------------------------------------- /cleanPod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/cleanPod.sh -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/configure -------------------------------------------------------------------------------- /download_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/download_zip.sh -------------------------------------------------------------------------------- /lint_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/lint_binary.sh -------------------------------------------------------------------------------- /lint_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/lint_source.sh -------------------------------------------------------------------------------- /merge_request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/merge_request.sh -------------------------------------------------------------------------------- /pod_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/pod_package.sh -------------------------------------------------------------------------------- /release_pb_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/release_pb_app.sh -------------------------------------------------------------------------------- /setup/ConfigureSwift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/ConfigureSwift.rb -------------------------------------------------------------------------------- /setup/ConfigureiOS.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/ConfigureiOS.rb -------------------------------------------------------------------------------- /setup/MessageBank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/MessageBank.rb -------------------------------------------------------------------------------- /setup/ProjectManipulator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/ProjectManipulator.rb -------------------------------------------------------------------------------- /setup/TemplateConfigurator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/TemplateConfigurator.rb -------------------------------------------------------------------------------- /setup/test_examples/kiwi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/test_examples/kiwi.m -------------------------------------------------------------------------------- /setup/test_examples/quick.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/test_examples/quick.swift -------------------------------------------------------------------------------- /setup/test_examples/specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/test_examples/specta.m -------------------------------------------------------------------------------- /setup/test_examples/xctest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/test_examples/xctest.m -------------------------------------------------------------------------------- /setup/test_examples/xctest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/setup/test_examples/xctest.swift -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/CPDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/CPDAppDelegate.h -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/CPDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/CPDAppDelegate.m -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/CPDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/CPDViewController.h -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/CPDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/CPDViewController.m -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/Launch Screen.storyboard -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/Main.storyboard -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/PROJECT-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/PROJECT-Info.plist -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/PROJECT-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/PROJECT-Prefix.pch -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /templates/ios/Example/PROJECT/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/PROJECT/main.m -------------------------------------------------------------------------------- /templates/ios/Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/Podfile -------------------------------------------------------------------------------- /templates/ios/Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /templates/ios/Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /templates/ios/Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/ios/Example/Tests/Tests.m -------------------------------------------------------------------------------- /templates/ios/Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT/AppDelegate.swift -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT/Info.plist -------------------------------------------------------------------------------- /templates/swift/Example/PROJECT/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/PROJECT/ViewController.swift -------------------------------------------------------------------------------- /templates/swift/Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/Podfile -------------------------------------------------------------------------------- /templates/swift/Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/templates/swift/Example/Tests/Info.plist -------------------------------------------------------------------------------- /templates/swift/Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | ${TEST_EXAMPLE} -------------------------------------------------------------------------------- /zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdsb100/ytx-pod-template/HEAD/zip.sh --------------------------------------------------------------------------------