├── .github ├── dependabot.yml └── workflows │ └── Specs.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── Rakefile ├── VERSION ├── bin ├── bacon ├── cocoapods-gen ├── console ├── rake ├── rspec ├── rubocop └── setup ├── cocoapods-generate.gemspec ├── lib ├── cocoapods │ ├── command │ │ └── gen.rb │ ├── generate.rb │ └── generate │ │ ├── configuration.rb │ │ ├── installer.rb │ │ └── podfile_generator.rb └── cocoapods_plugin.rb └── spec ├── cocoapods ├── command │ └── gen_spec.rb ├── generate │ ├── configuration_spec.rb │ ├── installer_spec.rb │ └── podfile_generator_spec.rb ├── sample_app_host │ └── AppDelegate.swift └── sample_podspecs │ ├── A.podspec │ ├── B.podspec │ ├── gen │ └── D │ │ └── D.podspec │ └── nested │ └── C.podspec ├── integration.rb ├── integration ├── .gitignore ├── app_host_source_dir │ ├── after │ │ ├── .gen_config.yml │ │ ├── AppHost │ │ │ ├── Subdir │ │ │ │ ├── other.h │ │ │ │ └── other.swift │ │ │ └── main.m │ │ ├── Foo.podspec │ │ ├── Sources │ │ │ └── Foo.m │ │ ├── Tests │ │ │ └── FooTests.m │ │ ├── execution_output.txt │ │ └── gen │ │ │ └── Foo │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ └── LaunchScreen.storyboard │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Foo.xcodeproj │ │ │ ├── Foo.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── Local Podspecs │ │ │ └── Foo.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── Foo-iOS │ │ │ ├── Foo-iOS-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-iOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-iOS-dummy.m │ │ │ ├── Foo-iOS-prefix.pch │ │ │ ├── Foo-iOS-umbrella.h │ │ │ ├── Foo-iOS.debug.xcconfig │ │ │ ├── Foo-iOS.modulemap │ │ │ ├── Foo-iOS.release.xcconfig │ │ │ ├── Foo-iOS.unit-tests.debug.xcconfig │ │ │ └── Foo-iOS.unit-tests.release.xcconfig │ │ │ ├── Foo-macOS │ │ │ ├── Foo-macOS-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-macOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-macOS-dummy.m │ │ │ ├── Foo-macOS-prefix.pch │ │ │ ├── Foo-macOS-umbrella.h │ │ │ ├── Foo-macOS.debug.xcconfig │ │ │ ├── Foo-macOS.modulemap │ │ │ ├── Foo-macOS.release.xcconfig │ │ │ ├── Foo-macOS.unit-tests.debug.xcconfig │ │ │ └── Foo-macOS.unit-tests.release.xcconfig │ │ │ ├── Foo-tvOS │ │ │ ├── Foo-tvOS-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-tvOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-tvOS-dummy.m │ │ │ ├── Foo-tvOS-prefix.pch │ │ │ ├── Foo-tvOS-umbrella.h │ │ │ ├── Foo-tvOS.debug.xcconfig │ │ │ ├── Foo-tvOS.modulemap │ │ │ ├── Foo-tvOS.release.xcconfig │ │ │ ├── Foo-tvOS.unit-tests.debug.xcconfig │ │ │ └── Foo-tvOS.unit-tests.release.xcconfig │ │ │ ├── Foo-watchOS │ │ │ ├── Foo-watchOS-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-watchOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-watchOS-dummy.m │ │ │ ├── Foo-watchOS-prefix.pch │ │ │ ├── Foo-watchOS-umbrella.h │ │ │ ├── Foo-watchOS.debug.xcconfig │ │ │ ├── Foo-watchOS.modulemap │ │ │ ├── Foo-watchOS.release.xcconfig │ │ │ ├── Foo-watchOS.unit-tests.debug.xcconfig │ │ │ └── Foo-watchOS.unit-tests.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ └── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ ├── before │ │ ├── .gen_config.yml │ │ ├── AppHost │ │ │ ├── Subdir │ │ │ │ ├── other.h │ │ │ │ └── other.swift │ │ │ └── main.m │ │ ├── Foo.podspec │ │ ├── Sources │ │ │ └── Foo.m │ │ └── Tests │ │ │ └── FooTests.m │ └── spec.yml ├── fork │ ├── after │ │ ├── Foo.podspec │ │ ├── Podfile │ │ ├── Sources │ │ │ └── Foo.m │ │ ├── Tests │ │ │ └── FooTests.m │ │ ├── execution_output.txt │ │ └── gen │ │ │ └── Foo │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Foo.xcodeproj │ │ │ ├── Foo.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── Local Podspecs │ │ │ └── Foo.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── Foo-iOS │ │ │ ├── Foo-iOS-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-iOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-iOS-dummy.m │ │ │ ├── Foo-iOS-prefix.pch │ │ │ ├── Foo-iOS-umbrella.h │ │ │ ├── Foo-iOS.debug.xcconfig │ │ │ ├── Foo-iOS.modulemap │ │ │ ├── Foo-iOS.release.xcconfig │ │ │ ├── Foo-iOS.unit-tests.debug.xcconfig │ │ │ └── Foo-iOS.unit-tests.release.xcconfig │ │ │ ├── Foo-macOS │ │ │ ├── Foo-macOS-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-macOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-macOS-dummy.m │ │ │ ├── Foo-macOS-prefix.pch │ │ │ ├── Foo-macOS-umbrella.h │ │ │ ├── Foo-macOS.debug.xcconfig │ │ │ ├── Foo-macOS.modulemap │ │ │ ├── Foo-macOS.release.xcconfig │ │ │ ├── Foo-macOS.unit-tests.debug.xcconfig │ │ │ └── Foo-macOS.unit-tests.release.xcconfig │ │ │ ├── Foo-tvOS │ │ │ ├── Foo-tvOS-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-tvOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-tvOS-dummy.m │ │ │ ├── Foo-tvOS-prefix.pch │ │ │ ├── Foo-tvOS-umbrella.h │ │ │ ├── Foo-tvOS.debug.xcconfig │ │ │ ├── Foo-tvOS.modulemap │ │ │ ├── Foo-tvOS.release.xcconfig │ │ │ ├── Foo-tvOS.unit-tests.debug.xcconfig │ │ │ └── Foo-tvOS.unit-tests.release.xcconfig │ │ │ ├── Foo-watchOS │ │ │ ├── Foo-watchOS-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-watchOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-watchOS-dummy.m │ │ │ ├── Foo-watchOS-prefix.pch │ │ │ ├── Foo-watchOS-umbrella.h │ │ │ ├── Foo-watchOS.debug.xcconfig │ │ │ ├── Foo-watchOS.modulemap │ │ │ ├── Foo-watchOS.release.xcconfig │ │ │ ├── Foo-watchOS.unit-tests.debug.xcconfig │ │ │ └── Foo-watchOS.unit-tests.release.xcconfig │ │ │ ├── Forkable-iOS │ │ │ ├── Forkable-iOS.debug.xcconfig │ │ │ └── Forkable-iOS.release.xcconfig │ │ │ ├── Forkable-macOS │ │ │ ├── Forkable-macOS.debug.xcconfig │ │ │ └── Forkable-macOS.release.xcconfig │ │ │ ├── Forkable-tvOS │ │ │ ├── Forkable-tvOS.debug.xcconfig │ │ │ └── Forkable-tvOS.release.xcconfig │ │ │ ├── Forkable-watchOS │ │ │ ├── Forkable-watchOS.debug.xcconfig │ │ │ └── Forkable-watchOS.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ ├── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ ├── UsesForkable-iOS │ │ │ ├── UsesForkable-iOS.debug.xcconfig │ │ │ └── UsesForkable-iOS.release.xcconfig │ │ │ ├── UsesForkable-macOS │ │ │ ├── UsesForkable-macOS.debug.xcconfig │ │ │ └── UsesForkable-macOS.release.xcconfig │ │ │ ├── UsesForkable-tvOS │ │ │ ├── UsesForkable-tvOS.debug.xcconfig │ │ │ └── UsesForkable-tvOS.release.xcconfig │ │ │ └── UsesForkable-watchOS │ │ │ ├── UsesForkable-watchOS.debug.xcconfig │ │ │ └── UsesForkable-watchOS.release.xcconfig │ ├── before │ │ ├── Foo.podspec │ │ ├── Podfile │ │ ├── Sources │ │ │ └── Foo.m │ │ ├── Tests │ │ │ └── FooTests.m │ │ └── gen │ │ │ └── Foo │ │ │ └── file.txt │ └── spec.yml ├── local-version-of-published-podspec │ ├── after │ │ ├── .gen_config.yml │ │ ├── Foo.podspec │ │ ├── Foo │ │ │ ├── Sources │ │ │ │ └── Foo.m │ │ │ └── Tests │ │ │ │ └── FooTests.m │ │ ├── Forkable.podspec │ │ ├── Forkable │ │ │ ├── Sources │ │ │ │ └── Forkable.m │ │ │ └── Tests │ │ │ │ └── ForkableTests.m │ │ ├── execution_output.txt │ │ └── gen │ │ │ ├── Foo │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Foo.xcodeproj │ │ │ ├── Foo.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── Local Podspecs │ │ │ │ ├── Foo.podspec.json │ │ │ │ └── Forkable.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── Foo-iOS │ │ │ │ ├── Foo-iOS.debug.xcconfig │ │ │ │ └── Foo-iOS.release.xcconfig │ │ │ │ ├── Foo-macOS │ │ │ │ ├── Foo-macOS.debug.xcconfig │ │ │ │ └── Foo-macOS.release.xcconfig │ │ │ │ ├── Foo-tvOS │ │ │ │ ├── Foo-tvOS.debug.xcconfig │ │ │ │ └── Foo-tvOS.release.xcconfig │ │ │ │ ├── Foo-watchOS │ │ │ │ ├── Foo-watchOS.debug.xcconfig │ │ │ │ └── Foo-watchOS.release.xcconfig │ │ │ │ ├── Forkable-iOS │ │ │ │ ├── Forkable-iOS-Info.plist │ │ │ │ ├── Forkable-iOS-dummy.m │ │ │ │ ├── Forkable-iOS-prefix.pch │ │ │ │ ├── Forkable-iOS-umbrella.h │ │ │ │ ├── Forkable-iOS.debug.xcconfig │ │ │ │ ├── Forkable-iOS.modulemap │ │ │ │ └── Forkable-iOS.release.xcconfig │ │ │ │ ├── Forkable-macOS │ │ │ │ ├── Forkable-macOS-Info.plist │ │ │ │ ├── Forkable-macOS-dummy.m │ │ │ │ ├── Forkable-macOS-prefix.pch │ │ │ │ ├── Forkable-macOS-umbrella.h │ │ │ │ ├── Forkable-macOS.debug.xcconfig │ │ │ │ ├── Forkable-macOS.modulemap │ │ │ │ └── Forkable-macOS.release.xcconfig │ │ │ │ ├── Forkable-tvOS │ │ │ │ ├── Forkable-tvOS-Info.plist │ │ │ │ ├── Forkable-tvOS-dummy.m │ │ │ │ ├── Forkable-tvOS-prefix.pch │ │ │ │ ├── Forkable-tvOS-umbrella.h │ │ │ │ ├── Forkable-tvOS.debug.xcconfig │ │ │ │ ├── Forkable-tvOS.modulemap │ │ │ │ └── Forkable-tvOS.release.xcconfig │ │ │ │ ├── Forkable-watchOS │ │ │ │ ├── Forkable-watchOS-Info.plist │ │ │ │ ├── Forkable-watchOS-dummy.m │ │ │ │ ├── Forkable-watchOS-prefix.pch │ │ │ │ ├── Forkable-watchOS-umbrella.h │ │ │ │ ├── Forkable-watchOS.debug.xcconfig │ │ │ │ ├── Forkable-watchOS.modulemap │ │ │ │ └── Forkable-watchOS.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ └── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ └── Forkable │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Forkable.xcodeproj │ │ │ ├── Forkable.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── Local Podspecs │ │ │ └── Forkable.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── Forkable-iOS │ │ │ ├── Forkable-iOS-Info.plist │ │ │ ├── Forkable-iOS-Unit-Tests-Info.plist │ │ │ ├── Forkable-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Forkable-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Forkable-iOS-Unit-Tests-frameworks.sh │ │ │ ├── Forkable-iOS-Unit-Tests-prefix.pch │ │ │ ├── Forkable-iOS-dummy.m │ │ │ ├── Forkable-iOS-prefix.pch │ │ │ ├── Forkable-iOS-umbrella.h │ │ │ ├── Forkable-iOS.debug.xcconfig │ │ │ ├── Forkable-iOS.modulemap │ │ │ ├── Forkable-iOS.release.xcconfig │ │ │ ├── Forkable-iOS.unit-tests.debug.xcconfig │ │ │ └── Forkable-iOS.unit-tests.release.xcconfig │ │ │ ├── Forkable-macOS │ │ │ ├── Forkable-macOS-Info.plist │ │ │ ├── Forkable-macOS-Unit-Tests-Info.plist │ │ │ ├── Forkable-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Forkable-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Forkable-macOS-Unit-Tests-frameworks.sh │ │ │ ├── Forkable-macOS-Unit-Tests-prefix.pch │ │ │ ├── Forkable-macOS-dummy.m │ │ │ ├── Forkable-macOS-prefix.pch │ │ │ ├── Forkable-macOS-umbrella.h │ │ │ ├── Forkable-macOS.debug.xcconfig │ │ │ ├── Forkable-macOS.modulemap │ │ │ ├── Forkable-macOS.release.xcconfig │ │ │ ├── Forkable-macOS.unit-tests.debug.xcconfig │ │ │ └── Forkable-macOS.unit-tests.release.xcconfig │ │ │ ├── Forkable-tvOS │ │ │ ├── Forkable-tvOS-Info.plist │ │ │ ├── Forkable-tvOS-Unit-Tests-Info.plist │ │ │ ├── Forkable-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Forkable-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Forkable-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── Forkable-tvOS-Unit-Tests-prefix.pch │ │ │ ├── Forkable-tvOS-dummy.m │ │ │ ├── Forkable-tvOS-prefix.pch │ │ │ ├── Forkable-tvOS-umbrella.h │ │ │ ├── Forkable-tvOS.debug.xcconfig │ │ │ ├── Forkable-tvOS.modulemap │ │ │ ├── Forkable-tvOS.release.xcconfig │ │ │ ├── Forkable-tvOS.unit-tests.debug.xcconfig │ │ │ └── Forkable-tvOS.unit-tests.release.xcconfig │ │ │ ├── Forkable-watchOS │ │ │ ├── Forkable-watchOS-Info.plist │ │ │ ├── Forkable-watchOS-Unit-Tests-Info.plist │ │ │ ├── Forkable-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Forkable-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Forkable-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── Forkable-watchOS-Unit-Tests-prefix.pch │ │ │ ├── Forkable-watchOS-dummy.m │ │ │ ├── Forkable-watchOS-prefix.pch │ │ │ ├── Forkable-watchOS-umbrella.h │ │ │ ├── Forkable-watchOS.debug.xcconfig │ │ │ ├── Forkable-watchOS.modulemap │ │ │ ├── Forkable-watchOS.release.xcconfig │ │ │ ├── Forkable-watchOS.unit-tests.debug.xcconfig │ │ │ └── Forkable-watchOS.unit-tests.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ └── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ ├── before │ │ ├── .gen_config.yml │ │ ├── Foo.podspec │ │ ├── Foo │ │ │ ├── Sources │ │ │ │ └── Foo.m │ │ │ └── Tests │ │ │ │ └── FooTests.m │ │ ├── Forkable.podspec │ │ └── Forkable │ │ │ ├── Sources │ │ │ └── Forkable.m │ │ │ └── Tests │ │ │ └── ForkableTests.m │ └── spec.yml ├── local_sources │ ├── after │ │ ├── Frameworks │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── a_main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── b_main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── c_main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ └── e │ │ │ │ ├── App │ │ │ │ └── e_main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── e_Internal.h │ │ │ │ ├── e.h │ │ │ │ ├── e.m │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ ├── eTests.m │ │ │ │ └── e_tests.swift │ │ ├── Podfile │ │ ├── execution_output.txt │ │ └── gen │ │ │ └── E │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── E.xcodeproj │ │ │ ├── E.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── App │ │ │ ├── E-iOS-App-Info.plist │ │ │ ├── E-macOS-App-Info.plist │ │ │ ├── E-tvOS-App-Info.plist │ │ │ └── E-watchOS-App-Info.plist │ │ │ ├── E-iOS-App │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Local Podspecs │ │ │ ├── A.podspec.json │ │ │ ├── B.podspec.json │ │ │ ├── C.podspec.json │ │ │ └── E.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── A-iOS │ │ │ ├── A-iOS-Info.plist │ │ │ ├── A-iOS-dummy.m │ │ │ ├── A-iOS-prefix.pch │ │ │ ├── A-iOS-umbrella.h │ │ │ ├── A-iOS.debug.xcconfig │ │ │ ├── A-iOS.modulemap │ │ │ └── A-iOS.release.xcconfig │ │ │ ├── A-macOS │ │ │ ├── A-macOS-Info.plist │ │ │ ├── A-macOS-dummy.m │ │ │ ├── A-macOS-prefix.pch │ │ │ ├── A-macOS-umbrella.h │ │ │ ├── A-macOS.debug.xcconfig │ │ │ ├── A-macOS.modulemap │ │ │ └── A-macOS.release.xcconfig │ │ │ ├── A-tvOS │ │ │ ├── A-tvOS-Info.plist │ │ │ ├── A-tvOS-dummy.m │ │ │ ├── A-tvOS-prefix.pch │ │ │ ├── A-tvOS-umbrella.h │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ ├── A-tvOS.modulemap │ │ │ └── A-tvOS.release.xcconfig │ │ │ ├── A-watchOS │ │ │ ├── A-watchOS-Info.plist │ │ │ ├── A-watchOS-dummy.m │ │ │ ├── A-watchOS-prefix.pch │ │ │ ├── A-watchOS-umbrella.h │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ ├── A-watchOS.modulemap │ │ │ └── A-watchOS.release.xcconfig │ │ │ ├── B-iOS │ │ │ ├── B-iOS-Info.plist │ │ │ ├── B-iOS-dummy.m │ │ │ ├── B-iOS-prefix.pch │ │ │ ├── B-iOS-umbrella.h │ │ │ ├── B-iOS.debug.xcconfig │ │ │ ├── B-iOS.modulemap │ │ │ └── B-iOS.release.xcconfig │ │ │ ├── B-macOS │ │ │ ├── B-macOS-Info.plist │ │ │ ├── B-macOS-dummy.m │ │ │ ├── B-macOS-prefix.pch │ │ │ ├── B-macOS-umbrella.h │ │ │ ├── B-macOS.debug.xcconfig │ │ │ ├── B-macOS.modulemap │ │ │ └── B-macOS.release.xcconfig │ │ │ ├── B-tvOS │ │ │ ├── B-tvOS-Info.plist │ │ │ ├── B-tvOS-dummy.m │ │ │ ├── B-tvOS-prefix.pch │ │ │ ├── B-tvOS-umbrella.h │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ ├── B-tvOS.modulemap │ │ │ └── B-tvOS.release.xcconfig │ │ │ ├── B-watchOS │ │ │ ├── B-watchOS-Info.plist │ │ │ ├── B-watchOS-dummy.m │ │ │ ├── B-watchOS-prefix.pch │ │ │ ├── B-watchOS-umbrella.h │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ ├── B-watchOS.modulemap │ │ │ └── B-watchOS.release.xcconfig │ │ │ ├── C-iOS │ │ │ ├── C-iOS-Info.plist │ │ │ ├── C-iOS-dummy.m │ │ │ ├── C-iOS-prefix.pch │ │ │ ├── C-iOS-umbrella.h │ │ │ ├── C-iOS.debug.xcconfig │ │ │ ├── C-iOS.modulemap │ │ │ └── C-iOS.release.xcconfig │ │ │ ├── C-macOS │ │ │ ├── C-macOS-Info.plist │ │ │ ├── C-macOS-dummy.m │ │ │ ├── C-macOS-prefix.pch │ │ │ ├── C-macOS-umbrella.h │ │ │ ├── C-macOS.debug.xcconfig │ │ │ ├── C-macOS.modulemap │ │ │ └── C-macOS.release.xcconfig │ │ │ ├── C-tvOS │ │ │ ├── C-tvOS-Info.plist │ │ │ ├── C-tvOS-dummy.m │ │ │ ├── C-tvOS-prefix.pch │ │ │ ├── C-tvOS-umbrella.h │ │ │ ├── C-tvOS.debug.xcconfig │ │ │ ├── C-tvOS.modulemap │ │ │ └── C-tvOS.release.xcconfig │ │ │ ├── C-watchOS │ │ │ ├── C-watchOS-Info.plist │ │ │ ├── C-watchOS-dummy.m │ │ │ ├── C-watchOS-prefix.pch │ │ │ ├── C-watchOS-umbrella.h │ │ │ ├── C-watchOS.debug.xcconfig │ │ │ ├── C-watchOS.modulemap │ │ │ └── C-watchOS.release.xcconfig │ │ │ ├── E-iOS │ │ │ ├── E-iOS-App-frameworks-input-files.xcfilelist │ │ │ ├── E-iOS-App-frameworks-output-files.xcfilelist │ │ │ ├── E-iOS-App-frameworks.sh │ │ │ ├── E-iOS-App-prefix.pch │ │ │ ├── E-iOS-Info.plist │ │ │ ├── E-iOS-Unit-Tests-Info.plist │ │ │ ├── E-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── E-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── E-iOS-Unit-Tests-frameworks.sh │ │ │ ├── E-iOS-Unit-Tests-prefix.pch │ │ │ ├── E-iOS-dummy.m │ │ │ ├── E-iOS-prefix.pch │ │ │ ├── E-iOS-umbrella.h │ │ │ ├── E-iOS.app.debug.xcconfig │ │ │ ├── E-iOS.app.release.xcconfig │ │ │ ├── E-iOS.debug.xcconfig │ │ │ ├── E-iOS.modulemap │ │ │ ├── E-iOS.release.xcconfig │ │ │ ├── E-iOS.unit-tests.debug.xcconfig │ │ │ └── E-iOS.unit-tests.release.xcconfig │ │ │ ├── E-macOS │ │ │ ├── E-macOS-App-frameworks-input-files.xcfilelist │ │ │ ├── E-macOS-App-frameworks-output-files.xcfilelist │ │ │ ├── E-macOS-App-frameworks.sh │ │ │ ├── E-macOS-App-prefix.pch │ │ │ ├── E-macOS-Info.plist │ │ │ ├── E-macOS-Unit-Tests-Info.plist │ │ │ ├── E-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── E-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── E-macOS-Unit-Tests-frameworks.sh │ │ │ ├── E-macOS-Unit-Tests-prefix.pch │ │ │ ├── E-macOS-dummy.m │ │ │ ├── E-macOS-prefix.pch │ │ │ ├── E-macOS-umbrella.h │ │ │ ├── E-macOS.app.debug.xcconfig │ │ │ ├── E-macOS.app.release.xcconfig │ │ │ ├── E-macOS.debug.xcconfig │ │ │ ├── E-macOS.modulemap │ │ │ ├── E-macOS.release.xcconfig │ │ │ ├── E-macOS.unit-tests.debug.xcconfig │ │ │ └── E-macOS.unit-tests.release.xcconfig │ │ │ ├── E-tvOS │ │ │ ├── E-tvOS-App-frameworks-input-files.xcfilelist │ │ │ ├── E-tvOS-App-frameworks-output-files.xcfilelist │ │ │ ├── E-tvOS-App-frameworks.sh │ │ │ ├── E-tvOS-App-prefix.pch │ │ │ ├── E-tvOS-Info.plist │ │ │ ├── E-tvOS-Unit-Tests-Info.plist │ │ │ ├── E-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── E-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── E-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── E-tvOS-Unit-Tests-prefix.pch │ │ │ ├── E-tvOS-dummy.m │ │ │ ├── E-tvOS-prefix.pch │ │ │ ├── E-tvOS-umbrella.h │ │ │ ├── E-tvOS.app.debug.xcconfig │ │ │ ├── E-tvOS.app.release.xcconfig │ │ │ ├── E-tvOS.debug.xcconfig │ │ │ ├── E-tvOS.modulemap │ │ │ ├── E-tvOS.release.xcconfig │ │ │ ├── E-tvOS.unit-tests.debug.xcconfig │ │ │ └── E-tvOS.unit-tests.release.xcconfig │ │ │ ├── E-watchOS │ │ │ ├── E-watchOS-App-frameworks-input-files.xcfilelist │ │ │ ├── E-watchOS-App-frameworks-output-files.xcfilelist │ │ │ ├── E-watchOS-App-frameworks.sh │ │ │ ├── E-watchOS-App-prefix.pch │ │ │ ├── E-watchOS-Info.plist │ │ │ ├── E-watchOS-Unit-Tests-Info.plist │ │ │ ├── E-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── E-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── E-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── E-watchOS-Unit-Tests-prefix.pch │ │ │ ├── E-watchOS-dummy.m │ │ │ ├── E-watchOS-prefix.pch │ │ │ ├── E-watchOS-umbrella.h │ │ │ ├── E-watchOS.app.debug.xcconfig │ │ │ ├── E-watchOS.app.release.xcconfig │ │ │ ├── E-watchOS.debug.xcconfig │ │ │ ├── E-watchOS.modulemap │ │ │ ├── E-watchOS.release.xcconfig │ │ │ ├── E-watchOS.unit-tests.debug.xcconfig │ │ │ └── E-watchOS.unit-tests.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ └── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ ├── before │ │ ├── Frameworks │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── a_main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── b_main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── c_main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ └── e │ │ │ │ ├── App │ │ │ │ └── e_main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── e_Internal.h │ │ │ │ ├── e.h │ │ │ │ ├── e.m │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ ├── eTests.m │ │ │ │ └── e_tests.swift │ │ ├── Podfile │ │ └── Pods │ │ │ ├── Headers │ │ │ ├── Private │ │ │ │ ├── A │ │ │ │ │ ├── a.h │ │ │ │ │ └── a_Internal.h │ │ │ │ ├── B │ │ │ │ │ ├── b.h │ │ │ │ │ └── b_Internal.h │ │ │ │ ├── C │ │ │ │ │ ├── c.h │ │ │ │ │ └── c_Internal.h │ │ │ │ └── E │ │ │ │ │ ├── e.h │ │ │ │ │ └── e_Internal.h │ │ │ └── Public │ │ │ │ ├── A │ │ │ │ ├── A-umbrella.h │ │ │ │ ├── A.modulemap │ │ │ │ └── a.h │ │ │ │ ├── B │ │ │ │ ├── B-umbrella.h │ │ │ │ ├── B.modulemap │ │ │ │ └── b.h │ │ │ │ ├── C │ │ │ │ ├── C-umbrella.h │ │ │ │ ├── C.modulemap │ │ │ │ └── c.h │ │ │ │ └── E │ │ │ │ ├── E-umbrella.h │ │ │ │ ├── E.modulemap │ │ │ │ └── e.h │ │ │ ├── Local Podspecs │ │ │ ├── A.podspec.json │ │ │ ├── B.podspec.json │ │ │ ├── C.podspec.json │ │ │ └── E.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Target Support Files │ │ │ ├── A │ │ │ ├── A-Unit-Tests-Info.plist │ │ │ ├── A-Unit-Tests-frameworks.sh │ │ │ ├── A-Unit-Tests-prefix.pch │ │ │ ├── A-Unit-Tests-resources.sh │ │ │ ├── A-dummy.m │ │ │ ├── A-prefix.pch │ │ │ ├── A.unit.xcconfig │ │ │ └── A.xcconfig │ │ │ ├── B │ │ │ ├── B-Unit-Tests-Info.plist │ │ │ ├── B-Unit-Tests-frameworks.sh │ │ │ ├── B-Unit-Tests-prefix.pch │ │ │ ├── B-Unit-Tests-resources.sh │ │ │ ├── B-dummy.m │ │ │ ├── B-prefix.pch │ │ │ ├── B.unit.xcconfig │ │ │ └── B.xcconfig │ │ │ ├── C │ │ │ ├── C-Unit-Tests-Info.plist │ │ │ ├── C-Unit-Tests-frameworks.sh │ │ │ ├── C-Unit-Tests-prefix.pch │ │ │ ├── C-Unit-Tests-resources.sh │ │ │ ├── C-dummy.m │ │ │ ├── C-prefix.pch │ │ │ ├── C.unit.xcconfig │ │ │ └── C.xcconfig │ │ │ ├── E │ │ │ ├── E-Unit-Tests-Info.plist │ │ │ ├── E-Unit-Tests-frameworks.sh │ │ │ ├── E-Unit-Tests-prefix.pch │ │ │ ├── E-Unit-Tests-resources.sh │ │ │ ├── E-dummy.m │ │ │ ├── E-prefix.pch │ │ │ ├── E.unit.xcconfig │ │ │ └── E.xcconfig │ │ │ ├── Pods-App │ │ │ ├── Pods-App-acknowledgements.markdown │ │ │ ├── Pods-App-acknowledgements.plist │ │ │ ├── Pods-App-dummy.m │ │ │ ├── Pods-App-frameworks.sh │ │ │ ├── Pods-App-resources.sh │ │ │ ├── Pods-App-umbrella.h │ │ │ ├── Pods-App.debug.xcconfig │ │ │ ├── Pods-App.modulemap │ │ │ └── Pods-App.release.xcconfig │ │ │ └── Pods-AppTests │ │ │ ├── Pods-AppTests-acknowledgements.markdown │ │ │ ├── Pods-AppTests-acknowledgements.plist │ │ │ ├── Pods-AppTests-dummy.m │ │ │ ├── Pods-AppTests-frameworks.sh │ │ │ ├── Pods-AppTests-resources.sh │ │ │ ├── Pods-AppTests-umbrella.h │ │ │ ├── Pods-AppTests.debug.xcconfig │ │ │ ├── Pods-AppTests.modulemap │ │ │ └── Pods-AppTests.release.xcconfig │ └── spec.yml ├── monorepo │ ├── after │ │ ├── Frameworks │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── a_main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── b_main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── c_main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ ├── d │ │ │ │ ├── App │ │ │ │ │ └── d_main.swift │ │ │ │ ├── D.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── d_Internal.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.m │ │ │ │ │ └── d.swift │ │ │ │ └── Tests │ │ │ │ │ ├── dTests.m │ │ │ │ │ └── d_tests.swift │ │ │ ├── e │ │ │ │ ├── App │ │ │ │ │ └── e_main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── e_Internal.h │ │ │ │ │ ├── e.h │ │ │ │ │ ├── e.m │ │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ │ ├── eTests.m │ │ │ │ │ └── e_tests.swift │ │ │ ├── f │ │ │ │ ├── App │ │ │ │ │ └── f_main.swift │ │ │ │ ├── F.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── f_Internal.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── f.m │ │ │ │ │ └── f.swift │ │ │ │ └── Tests │ │ │ │ │ ├── fTests.m │ │ │ │ │ └── f_tests.swift │ │ │ └── g │ │ │ │ ├── App │ │ │ │ └── g_main.swift │ │ │ │ ├── G.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── g_Internal.h │ │ │ │ ├── g.h │ │ │ │ ├── g.m │ │ │ │ └── g.swift │ │ │ │ └── Tests │ │ │ │ ├── gTests.m │ │ │ │ └── g_tests.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── execution_output.txt │ │ └── gen │ │ │ ├── A │ │ │ ├── A.xcodeproj │ │ │ ├── A.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── A-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── App │ │ │ │ ├── A-iOS-App-Info.plist │ │ │ │ ├── A-macOS-App-Info.plist │ │ │ │ ├── A-tvOS-App-Info.plist │ │ │ │ └── A-watchOS-App-Info.plist │ │ │ │ ├── Local Podspecs │ │ │ │ └── A.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-iOS-App-frameworks.sh │ │ │ │ ├── A-iOS-App-prefix.pch │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-Unit-Tests-Info.plist │ │ │ │ ├── A-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.app.debug.xcconfig │ │ │ │ ├── A-iOS.app.release.xcconfig │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ ├── A-iOS.release.xcconfig │ │ │ │ ├── A-iOS.unit-tests.debug.xcconfig │ │ │ │ └── A-iOS.unit-tests.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-macOS-App-frameworks.sh │ │ │ │ ├── A-macOS-App-prefix.pch │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-Unit-Tests-Info.plist │ │ │ │ ├── A-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.app.debug.xcconfig │ │ │ │ ├── A-macOS.app.release.xcconfig │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ ├── A-macOS.release.xcconfig │ │ │ │ ├── A-macOS.unit-tests.debug.xcconfig │ │ │ │ └── A-macOS.unit-tests.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-tvOS-App-frameworks.sh │ │ │ │ ├── A-tvOS-App-prefix.pch │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── A-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.app.debug.xcconfig │ │ │ │ ├── A-tvOS.app.release.xcconfig │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ ├── A-tvOS.release.xcconfig │ │ │ │ ├── A-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── A-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-watchOS-App-frameworks.sh │ │ │ │ ├── A-watchOS-App-prefix.pch │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── A-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.app.debug.xcconfig │ │ │ │ ├── A-watchOS.app.release.xcconfig │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ ├── A-watchOS.release.xcconfig │ │ │ │ ├── A-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── A-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ └── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ ├── B │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── B.xcodeproj │ │ │ ├── B.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── App │ │ │ │ ├── B-iOS-App-Info.plist │ │ │ │ ├── B-macOS-App-Info.plist │ │ │ │ ├── B-tvOS-App-Info.plist │ │ │ │ └── B-watchOS-App-Info.plist │ │ │ │ ├── B-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── Local Podspecs │ │ │ │ ├── A.podspec.json │ │ │ │ └── B.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ └── A-iOS.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ └── A-macOS.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ └── A-tvOS.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ └── A-watchOS.release.xcconfig │ │ │ │ ├── B-iOS │ │ │ │ ├── B-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-iOS-App-frameworks.sh │ │ │ │ ├── B-iOS-App-prefix.pch │ │ │ │ ├── B-iOS-Info.plist │ │ │ │ ├── B-iOS-Unit-Tests-Info.plist │ │ │ │ ├── B-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-iOS-dummy.m │ │ │ │ ├── B-iOS-prefix.pch │ │ │ │ ├── B-iOS-umbrella.h │ │ │ │ ├── B-iOS.app.debug.xcconfig │ │ │ │ ├── B-iOS.app.release.xcconfig │ │ │ │ ├── B-iOS.debug.xcconfig │ │ │ │ ├── B-iOS.modulemap │ │ │ │ ├── B-iOS.release.xcconfig │ │ │ │ ├── B-iOS.unit-tests.debug.xcconfig │ │ │ │ └── B-iOS.unit-tests.release.xcconfig │ │ │ │ ├── B-macOS │ │ │ │ ├── B-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-macOS-App-frameworks.sh │ │ │ │ ├── B-macOS-App-prefix.pch │ │ │ │ ├── B-macOS-Info.plist │ │ │ │ ├── B-macOS-Unit-Tests-Info.plist │ │ │ │ ├── B-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-macOS-dummy.m │ │ │ │ ├── B-macOS-prefix.pch │ │ │ │ ├── B-macOS-umbrella.h │ │ │ │ ├── B-macOS.app.debug.xcconfig │ │ │ │ ├── B-macOS.app.release.xcconfig │ │ │ │ ├── B-macOS.debug.xcconfig │ │ │ │ ├── B-macOS.modulemap │ │ │ │ ├── B-macOS.release.xcconfig │ │ │ │ ├── B-macOS.unit-tests.debug.xcconfig │ │ │ │ └── B-macOS.unit-tests.release.xcconfig │ │ │ │ ├── B-tvOS │ │ │ │ ├── B-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-tvOS-App-frameworks.sh │ │ │ │ ├── B-tvOS-App-prefix.pch │ │ │ │ ├── B-tvOS-Info.plist │ │ │ │ ├── B-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── B-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-tvOS-dummy.m │ │ │ │ ├── B-tvOS-prefix.pch │ │ │ │ ├── B-tvOS-umbrella.h │ │ │ │ ├── B-tvOS.app.debug.xcconfig │ │ │ │ ├── B-tvOS.app.release.xcconfig │ │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ │ ├── B-tvOS.modulemap │ │ │ │ ├── B-tvOS.release.xcconfig │ │ │ │ ├── B-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── B-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── B-watchOS │ │ │ │ ├── B-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-watchOS-App-frameworks.sh │ │ │ │ ├── B-watchOS-App-prefix.pch │ │ │ │ ├── B-watchOS-Info.plist │ │ │ │ ├── B-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── B-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-watchOS-dummy.m │ │ │ │ ├── B-watchOS-prefix.pch │ │ │ │ ├── B-watchOS-umbrella.h │ │ │ │ ├── B-watchOS.app.debug.xcconfig │ │ │ │ ├── B-watchOS.app.release.xcconfig │ │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ │ ├── B-watchOS.modulemap │ │ │ │ ├── B-watchOS.release.xcconfig │ │ │ │ ├── B-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── B-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ └── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ ├── C │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── C.xcodeproj │ │ │ ├── C.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── App │ │ │ │ ├── C-iOS-App-Info.plist │ │ │ │ ├── C-macOS-App-Info.plist │ │ │ │ ├── C-tvOS-App-Info.plist │ │ │ │ └── C-watchOS-App-Info.plist │ │ │ │ ├── C-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── Local Podspecs │ │ │ │ ├── A.podspec.json │ │ │ │ ├── B.podspec.json │ │ │ │ └── C.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ └── A-iOS.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ └── A-macOS.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ └── A-tvOS.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ └── A-watchOS.release.xcconfig │ │ │ │ ├── B-iOS │ │ │ │ ├── B-iOS-Info.plist │ │ │ │ ├── B-iOS-dummy.m │ │ │ │ ├── B-iOS-prefix.pch │ │ │ │ ├── B-iOS-umbrella.h │ │ │ │ ├── B-iOS.debug.xcconfig │ │ │ │ ├── B-iOS.modulemap │ │ │ │ └── B-iOS.release.xcconfig │ │ │ │ ├── B-macOS │ │ │ │ ├── B-macOS-Info.plist │ │ │ │ ├── B-macOS-dummy.m │ │ │ │ ├── B-macOS-prefix.pch │ │ │ │ ├── B-macOS-umbrella.h │ │ │ │ ├── B-macOS.debug.xcconfig │ │ │ │ ├── B-macOS.modulemap │ │ │ │ └── B-macOS.release.xcconfig │ │ │ │ ├── B-tvOS │ │ │ │ ├── B-tvOS-Info.plist │ │ │ │ ├── B-tvOS-dummy.m │ │ │ │ ├── B-tvOS-prefix.pch │ │ │ │ ├── B-tvOS-umbrella.h │ │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ │ ├── B-tvOS.modulemap │ │ │ │ └── B-tvOS.release.xcconfig │ │ │ │ ├── B-watchOS │ │ │ │ ├── B-watchOS-Info.plist │ │ │ │ ├── B-watchOS-dummy.m │ │ │ │ ├── B-watchOS-prefix.pch │ │ │ │ ├── B-watchOS-umbrella.h │ │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ │ ├── B-watchOS.modulemap │ │ │ │ └── B-watchOS.release.xcconfig │ │ │ │ ├── C-iOS │ │ │ │ ├── C-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-iOS-App-frameworks.sh │ │ │ │ ├── C-iOS-App-prefix.pch │ │ │ │ ├── C-iOS-Info.plist │ │ │ │ ├── C-iOS-Unit-Tests-Info.plist │ │ │ │ ├── C-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-iOS-dummy.m │ │ │ │ ├── C-iOS-prefix.pch │ │ │ │ ├── C-iOS-umbrella.h │ │ │ │ ├── C-iOS.app.debug.xcconfig │ │ │ │ ├── C-iOS.app.release.xcconfig │ │ │ │ ├── C-iOS.debug.xcconfig │ │ │ │ ├── C-iOS.modulemap │ │ │ │ ├── C-iOS.release.xcconfig │ │ │ │ ├── C-iOS.unit-tests.debug.xcconfig │ │ │ │ └── C-iOS.unit-tests.release.xcconfig │ │ │ │ ├── C-macOS │ │ │ │ ├── C-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-macOS-App-frameworks.sh │ │ │ │ ├── C-macOS-App-prefix.pch │ │ │ │ ├── C-macOS-Info.plist │ │ │ │ ├── C-macOS-Unit-Tests-Info.plist │ │ │ │ ├── C-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-macOS-dummy.m │ │ │ │ ├── C-macOS-prefix.pch │ │ │ │ ├── C-macOS-umbrella.h │ │ │ │ ├── C-macOS.app.debug.xcconfig │ │ │ │ ├── C-macOS.app.release.xcconfig │ │ │ │ ├── C-macOS.debug.xcconfig │ │ │ │ ├── C-macOS.modulemap │ │ │ │ ├── C-macOS.release.xcconfig │ │ │ │ ├── C-macOS.unit-tests.debug.xcconfig │ │ │ │ └── C-macOS.unit-tests.release.xcconfig │ │ │ │ ├── C-tvOS │ │ │ │ ├── C-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-tvOS-App-frameworks.sh │ │ │ │ ├── C-tvOS-App-prefix.pch │ │ │ │ ├── C-tvOS-Info.plist │ │ │ │ ├── C-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── C-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-tvOS-dummy.m │ │ │ │ ├── C-tvOS-prefix.pch │ │ │ │ ├── C-tvOS-umbrella.h │ │ │ │ ├── C-tvOS.app.debug.xcconfig │ │ │ │ ├── C-tvOS.app.release.xcconfig │ │ │ │ ├── C-tvOS.debug.xcconfig │ │ │ │ ├── C-tvOS.modulemap │ │ │ │ ├── C-tvOS.release.xcconfig │ │ │ │ ├── C-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── C-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── C-watchOS │ │ │ │ ├── C-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-watchOS-App-frameworks.sh │ │ │ │ ├── C-watchOS-App-prefix.pch │ │ │ │ ├── C-watchOS-Info.plist │ │ │ │ ├── C-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── C-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-watchOS-dummy.m │ │ │ │ ├── C-watchOS-prefix.pch │ │ │ │ ├── C-watchOS-umbrella.h │ │ │ │ ├── C-watchOS.app.debug.xcconfig │ │ │ │ ├── C-watchOS.app.release.xcconfig │ │ │ │ ├── C-watchOS.debug.xcconfig │ │ │ │ ├── C-watchOS.modulemap │ │ │ │ ├── C-watchOS.release.xcconfig │ │ │ │ ├── C-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── C-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ └── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ ├── D │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── D.xcodeproj │ │ │ ├── D.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── App │ │ │ │ ├── D-iOS-App-Info.plist │ │ │ │ ├── D-macOS-App-Info.plist │ │ │ │ ├── D-tvOS-App-Info.plist │ │ │ │ └── D-watchOS-App-Info.plist │ │ │ │ ├── D-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── Local Podspecs │ │ │ │ ├── A.podspec.json │ │ │ │ ├── B.podspec.json │ │ │ │ ├── C.podspec.json │ │ │ │ ├── D.podspec.json │ │ │ │ └── E.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ └── A-iOS.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ └── A-macOS.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ └── A-tvOS.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ └── A-watchOS.release.xcconfig │ │ │ │ ├── B-iOS │ │ │ │ ├── B-iOS-Info.plist │ │ │ │ ├── B-iOS-dummy.m │ │ │ │ ├── B-iOS-prefix.pch │ │ │ │ ├── B-iOS-umbrella.h │ │ │ │ ├── B-iOS.debug.xcconfig │ │ │ │ ├── B-iOS.modulemap │ │ │ │ └── B-iOS.release.xcconfig │ │ │ │ ├── B-macOS │ │ │ │ ├── B-macOS-Info.plist │ │ │ │ ├── B-macOS-dummy.m │ │ │ │ ├── B-macOS-prefix.pch │ │ │ │ ├── B-macOS-umbrella.h │ │ │ │ ├── B-macOS.debug.xcconfig │ │ │ │ ├── B-macOS.modulemap │ │ │ │ └── B-macOS.release.xcconfig │ │ │ │ ├── B-tvOS │ │ │ │ ├── B-tvOS-Info.plist │ │ │ │ ├── B-tvOS-dummy.m │ │ │ │ ├── B-tvOS-prefix.pch │ │ │ │ ├── B-tvOS-umbrella.h │ │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ │ ├── B-tvOS.modulemap │ │ │ │ └── B-tvOS.release.xcconfig │ │ │ │ ├── B-watchOS │ │ │ │ ├── B-watchOS-Info.plist │ │ │ │ ├── B-watchOS-dummy.m │ │ │ │ ├── B-watchOS-prefix.pch │ │ │ │ ├── B-watchOS-umbrella.h │ │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ │ ├── B-watchOS.modulemap │ │ │ │ └── B-watchOS.release.xcconfig │ │ │ │ ├── C-iOS │ │ │ │ ├── C-iOS-Info.plist │ │ │ │ ├── C-iOS-dummy.m │ │ │ │ ├── C-iOS-prefix.pch │ │ │ │ ├── C-iOS-umbrella.h │ │ │ │ ├── C-iOS.debug.xcconfig │ │ │ │ ├── C-iOS.modulemap │ │ │ │ └── C-iOS.release.xcconfig │ │ │ │ ├── C-macOS │ │ │ │ ├── C-macOS-Info.plist │ │ │ │ ├── C-macOS-dummy.m │ │ │ │ ├── C-macOS-prefix.pch │ │ │ │ ├── C-macOS-umbrella.h │ │ │ │ ├── C-macOS.debug.xcconfig │ │ │ │ ├── C-macOS.modulemap │ │ │ │ └── C-macOS.release.xcconfig │ │ │ │ ├── C-tvOS │ │ │ │ ├── C-tvOS-Info.plist │ │ │ │ ├── C-tvOS-dummy.m │ │ │ │ ├── C-tvOS-prefix.pch │ │ │ │ ├── C-tvOS-umbrella.h │ │ │ │ ├── C-tvOS.debug.xcconfig │ │ │ │ ├── C-tvOS.modulemap │ │ │ │ └── C-tvOS.release.xcconfig │ │ │ │ ├── C-watchOS │ │ │ │ ├── C-watchOS-Info.plist │ │ │ │ ├── C-watchOS-dummy.m │ │ │ │ ├── C-watchOS-prefix.pch │ │ │ │ ├── C-watchOS-umbrella.h │ │ │ │ ├── C-watchOS.debug.xcconfig │ │ │ │ ├── C-watchOS.modulemap │ │ │ │ └── C-watchOS.release.xcconfig │ │ │ │ ├── D-iOS │ │ │ │ ├── D-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-iOS-App-frameworks.sh │ │ │ │ ├── D-iOS-App-prefix.pch │ │ │ │ ├── D-iOS-Info.plist │ │ │ │ ├── D-iOS-Unit-Tests-Info.plist │ │ │ │ ├── D-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-iOS-dummy.m │ │ │ │ ├── D-iOS-prefix.pch │ │ │ │ ├── D-iOS-umbrella.h │ │ │ │ ├── D-iOS.app.debug.xcconfig │ │ │ │ ├── D-iOS.app.release.xcconfig │ │ │ │ ├── D-iOS.debug.xcconfig │ │ │ │ ├── D-iOS.modulemap │ │ │ │ ├── D-iOS.release.xcconfig │ │ │ │ ├── D-iOS.unit-tests.debug.xcconfig │ │ │ │ └── D-iOS.unit-tests.release.xcconfig │ │ │ │ ├── D-macOS │ │ │ │ ├── D-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-macOS-App-frameworks.sh │ │ │ │ ├── D-macOS-App-prefix.pch │ │ │ │ ├── D-macOS-Info.plist │ │ │ │ ├── D-macOS-Unit-Tests-Info.plist │ │ │ │ ├── D-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-macOS-dummy.m │ │ │ │ ├── D-macOS-prefix.pch │ │ │ │ ├── D-macOS-umbrella.h │ │ │ │ ├── D-macOS.app.debug.xcconfig │ │ │ │ ├── D-macOS.app.release.xcconfig │ │ │ │ ├── D-macOS.debug.xcconfig │ │ │ │ ├── D-macOS.modulemap │ │ │ │ ├── D-macOS.release.xcconfig │ │ │ │ ├── D-macOS.unit-tests.debug.xcconfig │ │ │ │ └── D-macOS.unit-tests.release.xcconfig │ │ │ │ ├── D-tvOS │ │ │ │ ├── D-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-tvOS-App-frameworks.sh │ │ │ │ ├── D-tvOS-App-prefix.pch │ │ │ │ ├── D-tvOS-Info.plist │ │ │ │ ├── D-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── D-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-tvOS-dummy.m │ │ │ │ ├── D-tvOS-prefix.pch │ │ │ │ ├── D-tvOS-umbrella.h │ │ │ │ ├── D-tvOS.app.debug.xcconfig │ │ │ │ ├── D-tvOS.app.release.xcconfig │ │ │ │ ├── D-tvOS.debug.xcconfig │ │ │ │ ├── D-tvOS.modulemap │ │ │ │ ├── D-tvOS.release.xcconfig │ │ │ │ ├── D-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── D-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── D-watchOS │ │ │ │ ├── D-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-watchOS-App-frameworks.sh │ │ │ │ ├── D-watchOS-App-prefix.pch │ │ │ │ ├── D-watchOS-Info.plist │ │ │ │ ├── D-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── D-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-watchOS-dummy.m │ │ │ │ ├── D-watchOS-prefix.pch │ │ │ │ ├── D-watchOS-umbrella.h │ │ │ │ ├── D-watchOS.app.debug.xcconfig │ │ │ │ ├── D-watchOS.app.release.xcconfig │ │ │ │ ├── D-watchOS.debug.xcconfig │ │ │ │ ├── D-watchOS.modulemap │ │ │ │ ├── D-watchOS.release.xcconfig │ │ │ │ ├── D-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── D-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── E-iOS │ │ │ │ ├── E-iOS-Info.plist │ │ │ │ ├── E-iOS-dummy.m │ │ │ │ ├── E-iOS-prefix.pch │ │ │ │ ├── E-iOS-umbrella.h │ │ │ │ ├── E-iOS.debug.xcconfig │ │ │ │ ├── E-iOS.modulemap │ │ │ │ └── E-iOS.release.xcconfig │ │ │ │ ├── E-macOS │ │ │ │ ├── E-macOS-Info.plist │ │ │ │ ├── E-macOS-dummy.m │ │ │ │ ├── E-macOS-prefix.pch │ │ │ │ ├── E-macOS-umbrella.h │ │ │ │ ├── E-macOS.debug.xcconfig │ │ │ │ ├── E-macOS.modulemap │ │ │ │ └── E-macOS.release.xcconfig │ │ │ │ ├── E-tvOS │ │ │ │ ├── E-tvOS-Info.plist │ │ │ │ ├── E-tvOS-dummy.m │ │ │ │ ├── E-tvOS-prefix.pch │ │ │ │ ├── E-tvOS-umbrella.h │ │ │ │ ├── E-tvOS.debug.xcconfig │ │ │ │ ├── E-tvOS.modulemap │ │ │ │ └── E-tvOS.release.xcconfig │ │ │ │ ├── E-watchOS │ │ │ │ ├── E-watchOS-Info.plist │ │ │ │ ├── E-watchOS-dummy.m │ │ │ │ ├── E-watchOS-prefix.pch │ │ │ │ ├── E-watchOS-umbrella.h │ │ │ │ ├── E-watchOS.debug.xcconfig │ │ │ │ ├── E-watchOS.modulemap │ │ │ │ └── E-watchOS.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ ├── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ │ ├── Public-iOS │ │ │ │ ├── Public-iOS.debug.xcconfig │ │ │ │ └── Public-iOS.release.xcconfig │ │ │ │ ├── Public-macOS │ │ │ │ ├── Public-macOS.debug.xcconfig │ │ │ │ └── Public-macOS.release.xcconfig │ │ │ │ ├── Public-tvOS │ │ │ │ ├── Public-tvOS.debug.xcconfig │ │ │ │ └── Public-tvOS.release.xcconfig │ │ │ │ └── Public-watchOS │ │ │ │ ├── Public-watchOS.debug.xcconfig │ │ │ │ └── Public-watchOS.release.xcconfig │ │ │ ├── E │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── E.xcodeproj │ │ │ ├── E.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── App │ │ │ │ ├── E-iOS-App-Info.plist │ │ │ │ ├── E-macOS-App-Info.plist │ │ │ │ ├── E-tvOS-App-Info.plist │ │ │ │ └── E-watchOS-App-Info.plist │ │ │ │ ├── E-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── Local Podspecs │ │ │ │ ├── A.podspec.json │ │ │ │ ├── B.podspec.json │ │ │ │ ├── C.podspec.json │ │ │ │ └── E.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ └── A-iOS.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ └── A-macOS.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ └── A-tvOS.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ └── A-watchOS.release.xcconfig │ │ │ │ ├── B-iOS │ │ │ │ ├── B-iOS-Info.plist │ │ │ │ ├── B-iOS-dummy.m │ │ │ │ ├── B-iOS-prefix.pch │ │ │ │ ├── B-iOS-umbrella.h │ │ │ │ ├── B-iOS.debug.xcconfig │ │ │ │ ├── B-iOS.modulemap │ │ │ │ └── B-iOS.release.xcconfig │ │ │ │ ├── B-macOS │ │ │ │ ├── B-macOS-Info.plist │ │ │ │ ├── B-macOS-dummy.m │ │ │ │ ├── B-macOS-prefix.pch │ │ │ │ ├── B-macOS-umbrella.h │ │ │ │ ├── B-macOS.debug.xcconfig │ │ │ │ ├── B-macOS.modulemap │ │ │ │ └── B-macOS.release.xcconfig │ │ │ │ ├── B-tvOS │ │ │ │ ├── B-tvOS-Info.plist │ │ │ │ ├── B-tvOS-dummy.m │ │ │ │ ├── B-tvOS-prefix.pch │ │ │ │ ├── B-tvOS-umbrella.h │ │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ │ ├── B-tvOS.modulemap │ │ │ │ └── B-tvOS.release.xcconfig │ │ │ │ ├── B-watchOS │ │ │ │ ├── B-watchOS-Info.plist │ │ │ │ ├── B-watchOS-dummy.m │ │ │ │ ├── B-watchOS-prefix.pch │ │ │ │ ├── B-watchOS-umbrella.h │ │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ │ ├── B-watchOS.modulemap │ │ │ │ └── B-watchOS.release.xcconfig │ │ │ │ ├── C-iOS │ │ │ │ ├── C-iOS-Info.plist │ │ │ │ ├── C-iOS-dummy.m │ │ │ │ ├── C-iOS-prefix.pch │ │ │ │ ├── C-iOS-umbrella.h │ │ │ │ ├── C-iOS.debug.xcconfig │ │ │ │ ├── C-iOS.modulemap │ │ │ │ └── C-iOS.release.xcconfig │ │ │ │ ├── C-macOS │ │ │ │ ├── C-macOS-Info.plist │ │ │ │ ├── C-macOS-dummy.m │ │ │ │ ├── C-macOS-prefix.pch │ │ │ │ ├── C-macOS-umbrella.h │ │ │ │ ├── C-macOS.debug.xcconfig │ │ │ │ ├── C-macOS.modulemap │ │ │ │ └── C-macOS.release.xcconfig │ │ │ │ ├── C-tvOS │ │ │ │ ├── C-tvOS-Info.plist │ │ │ │ ├── C-tvOS-dummy.m │ │ │ │ ├── C-tvOS-prefix.pch │ │ │ │ ├── C-tvOS-umbrella.h │ │ │ │ ├── C-tvOS.debug.xcconfig │ │ │ │ ├── C-tvOS.modulemap │ │ │ │ └── C-tvOS.release.xcconfig │ │ │ │ ├── C-watchOS │ │ │ │ ├── C-watchOS-Info.plist │ │ │ │ ├── C-watchOS-dummy.m │ │ │ │ ├── C-watchOS-prefix.pch │ │ │ │ ├── C-watchOS-umbrella.h │ │ │ │ ├── C-watchOS.debug.xcconfig │ │ │ │ ├── C-watchOS.modulemap │ │ │ │ └── C-watchOS.release.xcconfig │ │ │ │ ├── E-iOS │ │ │ │ ├── E-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-iOS-App-frameworks.sh │ │ │ │ ├── E-iOS-App-prefix.pch │ │ │ │ ├── E-iOS-Info.plist │ │ │ │ ├── E-iOS-Unit-Tests-Info.plist │ │ │ │ ├── E-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-iOS-dummy.m │ │ │ │ ├── E-iOS-prefix.pch │ │ │ │ ├── E-iOS-umbrella.h │ │ │ │ ├── E-iOS.app.debug.xcconfig │ │ │ │ ├── E-iOS.app.release.xcconfig │ │ │ │ ├── E-iOS.debug.xcconfig │ │ │ │ ├── E-iOS.modulemap │ │ │ │ ├── E-iOS.release.xcconfig │ │ │ │ ├── E-iOS.unit-tests.debug.xcconfig │ │ │ │ └── E-iOS.unit-tests.release.xcconfig │ │ │ │ ├── E-macOS │ │ │ │ ├── E-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-macOS-App-frameworks.sh │ │ │ │ ├── E-macOS-App-prefix.pch │ │ │ │ ├── E-macOS-Info.plist │ │ │ │ ├── E-macOS-Unit-Tests-Info.plist │ │ │ │ ├── E-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-macOS-dummy.m │ │ │ │ ├── E-macOS-prefix.pch │ │ │ │ ├── E-macOS-umbrella.h │ │ │ │ ├── E-macOS.app.debug.xcconfig │ │ │ │ ├── E-macOS.app.release.xcconfig │ │ │ │ ├── E-macOS.debug.xcconfig │ │ │ │ ├── E-macOS.modulemap │ │ │ │ ├── E-macOS.release.xcconfig │ │ │ │ ├── E-macOS.unit-tests.debug.xcconfig │ │ │ │ └── E-macOS.unit-tests.release.xcconfig │ │ │ │ ├── E-tvOS │ │ │ │ ├── E-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-tvOS-App-frameworks.sh │ │ │ │ ├── E-tvOS-App-prefix.pch │ │ │ │ ├── E-tvOS-Info.plist │ │ │ │ ├── E-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── E-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-tvOS-dummy.m │ │ │ │ ├── E-tvOS-prefix.pch │ │ │ │ ├── E-tvOS-umbrella.h │ │ │ │ ├── E-tvOS.app.debug.xcconfig │ │ │ │ ├── E-tvOS.app.release.xcconfig │ │ │ │ ├── E-tvOS.debug.xcconfig │ │ │ │ ├── E-tvOS.modulemap │ │ │ │ ├── E-tvOS.release.xcconfig │ │ │ │ ├── E-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── E-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── E-watchOS │ │ │ │ ├── E-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-watchOS-App-frameworks.sh │ │ │ │ ├── E-watchOS-App-prefix.pch │ │ │ │ ├── E-watchOS-Info.plist │ │ │ │ ├── E-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── E-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-watchOS-dummy.m │ │ │ │ ├── E-watchOS-prefix.pch │ │ │ │ ├── E-watchOS-umbrella.h │ │ │ │ ├── E-watchOS.app.debug.xcconfig │ │ │ │ ├── E-watchOS.app.release.xcconfig │ │ │ │ ├── E-watchOS.debug.xcconfig │ │ │ │ ├── E-watchOS.modulemap │ │ │ │ ├── E-watchOS.release.xcconfig │ │ │ │ ├── E-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── E-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ └── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ ├── F │ │ │ ├── App-iOS │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── F.xcodeproj │ │ │ ├── F.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── App │ │ │ │ ├── F-iOS-App-Info.plist │ │ │ │ ├── F-macOS-App-Info.plist │ │ │ │ ├── F-tvOS-App-Info.plist │ │ │ │ └── F-watchOS-App-Info.plist │ │ │ │ ├── F-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ ├── Local Podspecs │ │ │ │ ├── A.podspec.json │ │ │ │ ├── B.podspec.json │ │ │ │ ├── C.podspec.json │ │ │ │ └── F.podspec.json │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ └── A-iOS.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ └── A-macOS.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ └── A-tvOS.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ └── A-watchOS.release.xcconfig │ │ │ │ ├── B-iOS │ │ │ │ ├── B-iOS-Info.plist │ │ │ │ ├── B-iOS-dummy.m │ │ │ │ ├── B-iOS-prefix.pch │ │ │ │ ├── B-iOS-umbrella.h │ │ │ │ ├── B-iOS.debug.xcconfig │ │ │ │ ├── B-iOS.modulemap │ │ │ │ └── B-iOS.release.xcconfig │ │ │ │ ├── B-macOS │ │ │ │ ├── B-macOS-Info.plist │ │ │ │ ├── B-macOS-dummy.m │ │ │ │ ├── B-macOS-prefix.pch │ │ │ │ ├── B-macOS-umbrella.h │ │ │ │ ├── B-macOS.debug.xcconfig │ │ │ │ ├── B-macOS.modulemap │ │ │ │ └── B-macOS.release.xcconfig │ │ │ │ ├── B-tvOS │ │ │ │ ├── B-tvOS-Info.plist │ │ │ │ ├── B-tvOS-dummy.m │ │ │ │ ├── B-tvOS-prefix.pch │ │ │ │ ├── B-tvOS-umbrella.h │ │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ │ ├── B-tvOS.modulemap │ │ │ │ └── B-tvOS.release.xcconfig │ │ │ │ ├── B-watchOS │ │ │ │ ├── B-watchOS-Info.plist │ │ │ │ ├── B-watchOS-dummy.m │ │ │ │ ├── B-watchOS-prefix.pch │ │ │ │ ├── B-watchOS-umbrella.h │ │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ │ ├── B-watchOS.modulemap │ │ │ │ └── B-watchOS.release.xcconfig │ │ │ │ ├── C-iOS │ │ │ │ ├── C-iOS-Info.plist │ │ │ │ ├── C-iOS-dummy.m │ │ │ │ ├── C-iOS-prefix.pch │ │ │ │ ├── C-iOS-umbrella.h │ │ │ │ ├── C-iOS.debug.xcconfig │ │ │ │ ├── C-iOS.modulemap │ │ │ │ └── C-iOS.release.xcconfig │ │ │ │ ├── C-macOS │ │ │ │ ├── C-macOS-Info.plist │ │ │ │ ├── C-macOS-dummy.m │ │ │ │ ├── C-macOS-prefix.pch │ │ │ │ ├── C-macOS-umbrella.h │ │ │ │ ├── C-macOS.debug.xcconfig │ │ │ │ ├── C-macOS.modulemap │ │ │ │ └── C-macOS.release.xcconfig │ │ │ │ ├── C-tvOS │ │ │ │ ├── C-tvOS-Info.plist │ │ │ │ ├── C-tvOS-dummy.m │ │ │ │ ├── C-tvOS-prefix.pch │ │ │ │ ├── C-tvOS-umbrella.h │ │ │ │ ├── C-tvOS.debug.xcconfig │ │ │ │ ├── C-tvOS.modulemap │ │ │ │ └── C-tvOS.release.xcconfig │ │ │ │ ├── C-watchOS │ │ │ │ ├── C-watchOS-Info.plist │ │ │ │ ├── C-watchOS-dummy.m │ │ │ │ ├── C-watchOS-prefix.pch │ │ │ │ ├── C-watchOS-umbrella.h │ │ │ │ ├── C-watchOS.debug.xcconfig │ │ │ │ ├── C-watchOS.modulemap │ │ │ │ └── C-watchOS.release.xcconfig │ │ │ │ ├── F-iOS │ │ │ │ ├── F-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-iOS-App-frameworks.sh │ │ │ │ ├── F-iOS-App-prefix.pch │ │ │ │ ├── F-iOS-Info.plist │ │ │ │ ├── F-iOS-Unit-Tests-Info.plist │ │ │ │ ├── F-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-iOS-dummy.m │ │ │ │ ├── F-iOS-prefix.pch │ │ │ │ ├── F-iOS-umbrella.h │ │ │ │ ├── F-iOS.app.debug.xcconfig │ │ │ │ ├── F-iOS.app.release.xcconfig │ │ │ │ ├── F-iOS.debug.xcconfig │ │ │ │ ├── F-iOS.modulemap │ │ │ │ ├── F-iOS.release.xcconfig │ │ │ │ ├── F-iOS.unit-tests.debug.xcconfig │ │ │ │ └── F-iOS.unit-tests.release.xcconfig │ │ │ │ ├── F-macOS │ │ │ │ ├── F-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-macOS-App-frameworks.sh │ │ │ │ ├── F-macOS-App-prefix.pch │ │ │ │ ├── F-macOS-Info.plist │ │ │ │ ├── F-macOS-Unit-Tests-Info.plist │ │ │ │ ├── F-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-macOS-dummy.m │ │ │ │ ├── F-macOS-prefix.pch │ │ │ │ ├── F-macOS-umbrella.h │ │ │ │ ├── F-macOS.app.debug.xcconfig │ │ │ │ ├── F-macOS.app.release.xcconfig │ │ │ │ ├── F-macOS.debug.xcconfig │ │ │ │ ├── F-macOS.modulemap │ │ │ │ ├── F-macOS.release.xcconfig │ │ │ │ ├── F-macOS.unit-tests.debug.xcconfig │ │ │ │ └── F-macOS.unit-tests.release.xcconfig │ │ │ │ ├── F-tvOS │ │ │ │ ├── F-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-tvOS-App-frameworks.sh │ │ │ │ ├── F-tvOS-App-prefix.pch │ │ │ │ ├── F-tvOS-Info.plist │ │ │ │ ├── F-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── F-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-tvOS-dummy.m │ │ │ │ ├── F-tvOS-prefix.pch │ │ │ │ ├── F-tvOS-umbrella.h │ │ │ │ ├── F-tvOS.app.debug.xcconfig │ │ │ │ ├── F-tvOS.app.release.xcconfig │ │ │ │ ├── F-tvOS.debug.xcconfig │ │ │ │ ├── F-tvOS.modulemap │ │ │ │ ├── F-tvOS.release.xcconfig │ │ │ │ ├── F-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── F-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── F-watchOS │ │ │ │ ├── F-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-watchOS-App-frameworks.sh │ │ │ │ ├── F-watchOS-App-prefix.pch │ │ │ │ ├── F-watchOS-Info.plist │ │ │ │ ├── F-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── F-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-watchOS-dummy.m │ │ │ │ ├── F-watchOS-prefix.pch │ │ │ │ ├── F-watchOS-umbrella.h │ │ │ │ ├── F-watchOS.app.debug.xcconfig │ │ │ │ ├── F-watchOS.app.release.xcconfig │ │ │ │ ├── F-watchOS.debug.xcconfig │ │ │ │ ├── F-watchOS.modulemap │ │ │ │ ├── F-watchOS.release.xcconfig │ │ │ │ ├── F-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── F-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── OnlyPre-iOS │ │ │ │ ├── OnlyPre-iOS.debug.xcconfig │ │ │ │ └── OnlyPre-iOS.release.xcconfig │ │ │ │ ├── OnlyPre-macOS │ │ │ │ ├── OnlyPre-macOS.debug.xcconfig │ │ │ │ └── OnlyPre-macOS.release.xcconfig │ │ │ │ ├── OnlyPre-tvOS │ │ │ │ ├── OnlyPre-tvOS.debug.xcconfig │ │ │ │ └── OnlyPre-tvOS.release.xcconfig │ │ │ │ ├── OnlyPre-watchOS │ │ │ │ ├── OnlyPre-watchOS.debug.xcconfig │ │ │ │ └── OnlyPre-watchOS.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ └── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ └── G │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── G.xcodeproj │ │ │ ├── G.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── App │ │ │ ├── G-iOS-App-Info.plist │ │ │ ├── G-macOS-App-Info.plist │ │ │ ├── G-tvOS-App-Info.plist │ │ │ └── G-watchOS-App-Info.plist │ │ │ ├── G-iOS-App │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Local Podspecs │ │ │ ├── A.podspec.json │ │ │ └── G.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── A-iOS │ │ │ ├── A-iOS-Info.plist │ │ │ ├── A-iOS-dummy.m │ │ │ ├── A-iOS-prefix.pch │ │ │ ├── A-iOS-umbrella.h │ │ │ ├── A-iOS.debug.xcconfig │ │ │ ├── A-iOS.modulemap │ │ │ └── A-iOS.release.xcconfig │ │ │ ├── A-macOS │ │ │ ├── A-macOS-Info.plist │ │ │ ├── A-macOS-dummy.m │ │ │ ├── A-macOS-prefix.pch │ │ │ ├── A-macOS-umbrella.h │ │ │ ├── A-macOS.debug.xcconfig │ │ │ ├── A-macOS.modulemap │ │ │ └── A-macOS.release.xcconfig │ │ │ ├── A-tvOS │ │ │ ├── A-tvOS-Info.plist │ │ │ ├── A-tvOS-dummy.m │ │ │ ├── A-tvOS-prefix.pch │ │ │ ├── A-tvOS-umbrella.h │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ ├── A-tvOS.modulemap │ │ │ └── A-tvOS.release.xcconfig │ │ │ ├── A-watchOS │ │ │ ├── A-watchOS-Info.plist │ │ │ ├── A-watchOS-dummy.m │ │ │ ├── A-watchOS-prefix.pch │ │ │ ├── A-watchOS-umbrella.h │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ ├── A-watchOS.modulemap │ │ │ └── A-watchOS.release.xcconfig │ │ │ ├── G-iOS │ │ │ ├── G-iOS-App-frameworks-input-files.xcfilelist │ │ │ ├── G-iOS-App-frameworks-output-files.xcfilelist │ │ │ ├── G-iOS-App-frameworks.sh │ │ │ ├── G-iOS-App-prefix.pch │ │ │ ├── G-iOS-Info.plist │ │ │ ├── G-iOS-Unit-Tests-Info.plist │ │ │ ├── G-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── G-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── G-iOS-Unit-Tests-frameworks.sh │ │ │ ├── G-iOS-Unit-Tests-prefix.pch │ │ │ ├── G-iOS-dummy.m │ │ │ ├── G-iOS-prefix.pch │ │ │ ├── G-iOS-umbrella.h │ │ │ ├── G-iOS.app.debug.xcconfig │ │ │ ├── G-iOS.app.release.xcconfig │ │ │ ├── G-iOS.debug.xcconfig │ │ │ ├── G-iOS.modulemap │ │ │ ├── G-iOS.release.xcconfig │ │ │ ├── G-iOS.unit-tests.debug.xcconfig │ │ │ └── G-iOS.unit-tests.release.xcconfig │ │ │ ├── G-macOS │ │ │ ├── G-macOS-App-frameworks-input-files.xcfilelist │ │ │ ├── G-macOS-App-frameworks-output-files.xcfilelist │ │ │ ├── G-macOS-App-frameworks.sh │ │ │ ├── G-macOS-App-prefix.pch │ │ │ ├── G-macOS-Info.plist │ │ │ ├── G-macOS-Unit-Tests-Info.plist │ │ │ ├── G-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── G-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── G-macOS-Unit-Tests-frameworks.sh │ │ │ ├── G-macOS-Unit-Tests-prefix.pch │ │ │ ├── G-macOS-dummy.m │ │ │ ├── G-macOS-prefix.pch │ │ │ ├── G-macOS-umbrella.h │ │ │ ├── G-macOS.app.debug.xcconfig │ │ │ ├── G-macOS.app.release.xcconfig │ │ │ ├── G-macOS.debug.xcconfig │ │ │ ├── G-macOS.modulemap │ │ │ ├── G-macOS.release.xcconfig │ │ │ ├── G-macOS.unit-tests.debug.xcconfig │ │ │ └── G-macOS.unit-tests.release.xcconfig │ │ │ ├── G-tvOS │ │ │ ├── G-tvOS-App-frameworks-input-files.xcfilelist │ │ │ ├── G-tvOS-App-frameworks-output-files.xcfilelist │ │ │ ├── G-tvOS-App-frameworks.sh │ │ │ ├── G-tvOS-App-prefix.pch │ │ │ ├── G-tvOS-Info.plist │ │ │ ├── G-tvOS-Unit-Tests-Info.plist │ │ │ ├── G-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── G-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── G-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── G-tvOS-Unit-Tests-prefix.pch │ │ │ ├── G-tvOS-dummy.m │ │ │ ├── G-tvOS-prefix.pch │ │ │ ├── G-tvOS-umbrella.h │ │ │ ├── G-tvOS.app.debug.xcconfig │ │ │ ├── G-tvOS.app.release.xcconfig │ │ │ ├── G-tvOS.debug.xcconfig │ │ │ ├── G-tvOS.modulemap │ │ │ ├── G-tvOS.release.xcconfig │ │ │ ├── G-tvOS.unit-tests.debug.xcconfig │ │ │ └── G-tvOS.unit-tests.release.xcconfig │ │ │ ├── G-watchOS │ │ │ ├── G-watchOS-App-frameworks-input-files.xcfilelist │ │ │ ├── G-watchOS-App-frameworks-output-files.xcfilelist │ │ │ ├── G-watchOS-App-frameworks.sh │ │ │ ├── G-watchOS-App-prefix.pch │ │ │ ├── G-watchOS-Info.plist │ │ │ ├── G-watchOS-Unit-Tests-Info.plist │ │ │ ├── G-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── G-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── G-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── G-watchOS-Unit-Tests-prefix.pch │ │ │ ├── G-watchOS-dummy.m │ │ │ ├── G-watchOS-prefix.pch │ │ │ ├── G-watchOS-umbrella.h │ │ │ ├── G-watchOS.app.debug.xcconfig │ │ │ ├── G-watchOS.app.release.xcconfig │ │ │ ├── G-watchOS.debug.xcconfig │ │ │ ├── G-watchOS.modulemap │ │ │ ├── G-watchOS.release.xcconfig │ │ │ ├── G-watchOS.unit-tests.debug.xcconfig │ │ │ └── G-watchOS.unit-tests.release.xcconfig │ │ │ ├── OnlyPre-iOS │ │ │ ├── OnlyPre-iOS.debug.xcconfig │ │ │ └── OnlyPre-iOS.release.xcconfig │ │ │ ├── OnlyPre-macOS │ │ │ ├── OnlyPre-macOS.debug.xcconfig │ │ │ └── OnlyPre-macOS.release.xcconfig │ │ │ ├── OnlyPre-tvOS │ │ │ ├── OnlyPre-tvOS.debug.xcconfig │ │ │ └── OnlyPre-tvOS.release.xcconfig │ │ │ ├── OnlyPre-watchOS │ │ │ ├── OnlyPre-watchOS.debug.xcconfig │ │ │ └── OnlyPre-watchOS.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ ├── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ ├── Public-iOS │ │ │ ├── Public-iOS.debug.xcconfig │ │ │ └── Public-iOS.release.xcconfig │ │ │ ├── Public-macOS │ │ │ ├── Public-macOS.debug.xcconfig │ │ │ └── Public-macOS.release.xcconfig │ │ │ ├── Public-tvOS │ │ │ ├── Public-tvOS.debug.xcconfig │ │ │ └── Public-tvOS.release.xcconfig │ │ │ └── Public-watchOS │ │ │ ├── Public-watchOS.debug.xcconfig │ │ │ └── Public-watchOS.release.xcconfig │ ├── before │ │ ├── Frameworks │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── a_main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── b_main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── c_main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ ├── d │ │ │ │ ├── App │ │ │ │ │ └── d_main.swift │ │ │ │ ├── D.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── d_Internal.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.m │ │ │ │ │ └── d.swift │ │ │ │ └── Tests │ │ │ │ │ ├── dTests.m │ │ │ │ │ └── d_tests.swift │ │ │ ├── e │ │ │ │ ├── App │ │ │ │ │ └── e_main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── e_Internal.h │ │ │ │ │ ├── e.h │ │ │ │ │ ├── e.m │ │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ │ ├── eTests.m │ │ │ │ │ └── e_tests.swift │ │ │ ├── f │ │ │ │ ├── App │ │ │ │ │ └── f_main.swift │ │ │ │ ├── F.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── f_Internal.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── f.m │ │ │ │ │ └── f.swift │ │ │ │ └── Tests │ │ │ │ │ ├── fTests.m │ │ │ │ │ └── f_tests.swift │ │ │ └── g │ │ │ │ ├── App │ │ │ │ └── g_main.swift │ │ │ │ ├── G.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── g_Internal.h │ │ │ │ ├── g.h │ │ │ │ ├── g.m │ │ │ │ └── g.swift │ │ │ │ └── Tests │ │ │ │ ├── gTests.m │ │ │ │ └── g_tests.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── Pods │ │ │ ├── Headers │ │ │ ├── Private │ │ │ │ ├── A │ │ │ │ │ ├── a.h │ │ │ │ │ └── a_Internal.h │ │ │ │ ├── B │ │ │ │ │ ├── b.h │ │ │ │ │ └── b_Internal.h │ │ │ │ ├── C │ │ │ │ │ ├── c.h │ │ │ │ │ └── c_Internal.h │ │ │ │ ├── D │ │ │ │ │ ├── d.h │ │ │ │ │ └── d_Internal.h │ │ │ │ ├── E │ │ │ │ │ ├── e.h │ │ │ │ │ └── e_Internal.h │ │ │ │ ├── F │ │ │ │ │ ├── f.h │ │ │ │ │ └── f_Internal.h │ │ │ │ └── G │ │ │ │ │ ├── g.h │ │ │ │ │ └── g_Internal.h │ │ │ └── Public │ │ │ │ ├── A │ │ │ │ ├── A-umbrella.h │ │ │ │ ├── A.modulemap │ │ │ │ └── a.h │ │ │ │ ├── B │ │ │ │ ├── B-umbrella.h │ │ │ │ ├── B.modulemap │ │ │ │ └── b.h │ │ │ │ ├── C │ │ │ │ ├── C-umbrella.h │ │ │ │ ├── C.modulemap │ │ │ │ └── c.h │ │ │ │ ├── D │ │ │ │ ├── D-umbrella.h │ │ │ │ ├── D.modulemap │ │ │ │ └── d.h │ │ │ │ ├── E │ │ │ │ ├── E-umbrella.h │ │ │ │ ├── E.modulemap │ │ │ │ └── e.h │ │ │ │ ├── F │ │ │ │ ├── F-umbrella.h │ │ │ │ ├── F.modulemap │ │ │ │ └── f.h │ │ │ │ └── G │ │ │ │ ├── G-umbrella.h │ │ │ │ ├── G.modulemap │ │ │ │ └── g.h │ │ │ ├── Local Podspecs │ │ │ ├── A.podspec.json │ │ │ ├── B.podspec.json │ │ │ ├── C.podspec.json │ │ │ ├── D.podspec.json │ │ │ ├── E.podspec.json │ │ │ ├── F.podspec.json │ │ │ └── G.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Target Support Files │ │ │ ├── A │ │ │ ├── A-Unit-Tests-Info.plist │ │ │ ├── A-Unit-Tests-frameworks.sh │ │ │ ├── A-Unit-Tests-prefix.pch │ │ │ ├── A-Unit-Tests-resources.sh │ │ │ ├── A-dummy.m │ │ │ ├── A-prefix.pch │ │ │ ├── A.unit.xcconfig │ │ │ └── A.xcconfig │ │ │ ├── B │ │ │ ├── B-Unit-Tests-Info.plist │ │ │ ├── B-Unit-Tests-frameworks.sh │ │ │ ├── B-Unit-Tests-prefix.pch │ │ │ ├── B-Unit-Tests-resources.sh │ │ │ ├── B-dummy.m │ │ │ ├── B-prefix.pch │ │ │ ├── B.unit.xcconfig │ │ │ └── B.xcconfig │ │ │ ├── C │ │ │ ├── C-Unit-Tests-Info.plist │ │ │ ├── C-Unit-Tests-frameworks.sh │ │ │ ├── C-Unit-Tests-prefix.pch │ │ │ ├── C-Unit-Tests-resources.sh │ │ │ ├── C-dummy.m │ │ │ ├── C-prefix.pch │ │ │ ├── C.unit.xcconfig │ │ │ └── C.xcconfig │ │ │ ├── D │ │ │ ├── D-Unit-Tests-Info.plist │ │ │ ├── D-Unit-Tests-frameworks.sh │ │ │ ├── D-Unit-Tests-prefix.pch │ │ │ ├── D-Unit-Tests-resources.sh │ │ │ ├── D-dummy.m │ │ │ ├── D-prefix.pch │ │ │ ├── D.unit.xcconfig │ │ │ └── D.xcconfig │ │ │ ├── E │ │ │ ├── E-Unit-Tests-Info.plist │ │ │ ├── E-Unit-Tests-frameworks.sh │ │ │ ├── E-Unit-Tests-prefix.pch │ │ │ ├── E-Unit-Tests-resources.sh │ │ │ ├── E-dummy.m │ │ │ ├── E-prefix.pch │ │ │ ├── E.unit.xcconfig │ │ │ └── E.xcconfig │ │ │ ├── F │ │ │ ├── F-Unit-Tests-Info.plist │ │ │ ├── F-Unit-Tests-frameworks.sh │ │ │ ├── F-Unit-Tests-prefix.pch │ │ │ ├── F-Unit-Tests-resources.sh │ │ │ ├── F-dummy.m │ │ │ ├── F-prefix.pch │ │ │ ├── F.unit.xcconfig │ │ │ └── F.xcconfig │ │ │ ├── G │ │ │ ├── G-Unit-Tests-Info.plist │ │ │ ├── G-Unit-Tests-frameworks.sh │ │ │ ├── G-Unit-Tests-prefix.pch │ │ │ ├── G-Unit-Tests-resources.sh │ │ │ ├── G-dummy.m │ │ │ ├── G-prefix.pch │ │ │ ├── G.unit.xcconfig │ │ │ └── G.xcconfig │ │ │ ├── Pods-App │ │ │ ├── Pods-App-acknowledgements.markdown │ │ │ ├── Pods-App-acknowledgements.plist │ │ │ ├── Pods-App-dummy.m │ │ │ ├── Pods-App-frameworks.sh │ │ │ ├── Pods-App-resources.sh │ │ │ ├── Pods-App-umbrella.h │ │ │ ├── Pods-App.debug.xcconfig │ │ │ ├── Pods-App.modulemap │ │ │ └── Pods-App.release.xcconfig │ │ │ └── Pods-AppTests │ │ │ ├── Pods-AppTests-acknowledgements.markdown │ │ │ ├── Pods-AppTests-acknowledgements.plist │ │ │ ├── Pods-AppTests-dummy.m │ │ │ ├── Pods-AppTests-frameworks.sh │ │ │ ├── Pods-AppTests-resources.sh │ │ │ ├── Pods-AppTests-umbrella.h │ │ │ ├── Pods-AppTests.debug.xcconfig │ │ │ ├── Pods-AppTests.modulemap │ │ │ └── Pods-AppTests.release.xcconfig │ └── spec.yml ├── pod.tar ├── single_podspec │ ├── after │ │ ├── Foo.podspec │ │ ├── Sources │ │ │ └── Foo.m │ │ ├── Tests │ │ │ └── FooTests.m │ │ ├── execution_output.txt │ │ └── gen │ │ │ └── Foo │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Foo.xcodeproj │ │ │ ├── Foo.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── Local Podspecs │ │ │ └── Foo.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── Foo-iOS │ │ │ ├── Foo-iOS-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-iOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-iOS-dummy.m │ │ │ ├── Foo-iOS-prefix.pch │ │ │ ├── Foo-iOS-umbrella.h │ │ │ ├── Foo-iOS.debug.xcconfig │ │ │ ├── Foo-iOS.modulemap │ │ │ ├── Foo-iOS.release.xcconfig │ │ │ ├── Foo-iOS.unit-tests.debug.xcconfig │ │ │ └── Foo-iOS.unit-tests.release.xcconfig │ │ │ ├── Foo-macOS │ │ │ ├── Foo-macOS-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-macOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-macOS-dummy.m │ │ │ ├── Foo-macOS-prefix.pch │ │ │ ├── Foo-macOS-umbrella.h │ │ │ ├── Foo-macOS.debug.xcconfig │ │ │ ├── Foo-macOS.modulemap │ │ │ ├── Foo-macOS.release.xcconfig │ │ │ ├── Foo-macOS.unit-tests.debug.xcconfig │ │ │ └── Foo-macOS.unit-tests.release.xcconfig │ │ │ ├── Foo-tvOS │ │ │ ├── Foo-tvOS-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-tvOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-tvOS-dummy.m │ │ │ ├── Foo-tvOS-prefix.pch │ │ │ ├── Foo-tvOS-umbrella.h │ │ │ ├── Foo-tvOS.debug.xcconfig │ │ │ ├── Foo-tvOS.modulemap │ │ │ ├── Foo-tvOS.release.xcconfig │ │ │ ├── Foo-tvOS.unit-tests.debug.xcconfig │ │ │ └── Foo-tvOS.unit-tests.release.xcconfig │ │ │ ├── Foo-watchOS │ │ │ ├── Foo-watchOS-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-watchOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-watchOS-dummy.m │ │ │ ├── Foo-watchOS-prefix.pch │ │ │ ├── Foo-watchOS-umbrella.h │ │ │ ├── Foo-watchOS.debug.xcconfig │ │ │ ├── Foo-watchOS.modulemap │ │ │ ├── Foo-watchOS.release.xcconfig │ │ │ ├── Foo-watchOS.unit-tests.debug.xcconfig │ │ │ └── Foo-watchOS.unit-tests.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ └── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ ├── before │ │ ├── Foo.podspec │ │ ├── Sources │ │ │ └── Foo.m │ │ └── Tests │ │ │ └── FooTests.m │ └── spec.yml ├── single_workspace │ ├── after │ │ ├── Frameworks │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── a_main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── b_main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── c_main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ ├── d │ │ │ │ ├── App │ │ │ │ │ └── d_main.swift │ │ │ │ ├── D.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── d_Internal.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.m │ │ │ │ │ └── d.swift │ │ │ │ └── Tests │ │ │ │ │ ├── dTests.m │ │ │ │ │ └── d_tests.swift │ │ │ ├── e │ │ │ │ ├── App │ │ │ │ │ └── e_main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── e_Internal.h │ │ │ │ │ ├── e.h │ │ │ │ │ ├── e.m │ │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ │ ├── eTests.m │ │ │ │ │ └── e_tests.swift │ │ │ ├── f │ │ │ │ ├── App │ │ │ │ │ └── f_main.swift │ │ │ │ ├── F.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── f_Internal.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── f.m │ │ │ │ │ └── f.swift │ │ │ │ └── Tests │ │ │ │ │ ├── fTests.m │ │ │ │ │ └── f_tests.swift │ │ │ └── g │ │ │ │ ├── App │ │ │ │ └── g_main.swift │ │ │ │ ├── G.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── g_Internal.h │ │ │ │ ├── g.h │ │ │ │ ├── g.m │ │ │ │ └── g.swift │ │ │ │ └── Tests │ │ │ │ ├── gTests.m │ │ │ │ └── g_tests.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── execution_output.txt │ │ └── gen │ │ │ └── Workspace │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ │ ├── App-macOS │ │ │ └── main.m │ │ │ ├── App-tvOS │ │ │ └── main.m │ │ │ ├── App-watchOS │ │ │ └── main.m │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Podfile.lock │ │ │ ├── Pods │ │ │ ├── A-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── App │ │ │ │ ├── A-iOS-App-Info.plist │ │ │ │ ├── A-macOS-App-Info.plist │ │ │ │ ├── A-tvOS-App-Info.plist │ │ │ │ ├── A-watchOS-App-Info.plist │ │ │ │ ├── B-iOS-App-Info.plist │ │ │ │ ├── B-macOS-App-Info.plist │ │ │ │ ├── B-tvOS-App-Info.plist │ │ │ │ ├── B-watchOS-App-Info.plist │ │ │ │ ├── C-iOS-App-Info.plist │ │ │ │ ├── C-macOS-App-Info.plist │ │ │ │ ├── C-tvOS-App-Info.plist │ │ │ │ ├── C-watchOS-App-Info.plist │ │ │ │ ├── D-iOS-App-Info.plist │ │ │ │ ├── D-macOS-App-Info.plist │ │ │ │ ├── D-tvOS-App-Info.plist │ │ │ │ ├── D-watchOS-App-Info.plist │ │ │ │ ├── E-iOS-App-Info.plist │ │ │ │ ├── E-macOS-App-Info.plist │ │ │ │ ├── E-tvOS-App-Info.plist │ │ │ │ ├── E-watchOS-App-Info.plist │ │ │ │ ├── F-iOS-App-Info.plist │ │ │ │ ├── F-macOS-App-Info.plist │ │ │ │ ├── F-tvOS-App-Info.plist │ │ │ │ ├── F-watchOS-App-Info.plist │ │ │ │ ├── G-iOS-App-Info.plist │ │ │ │ ├── G-macOS-App-Info.plist │ │ │ │ ├── G-tvOS-App-Info.plist │ │ │ │ └── G-watchOS-App-Info.plist │ │ │ ├── B-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── C-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── D-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── E-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── F-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── G-iOS-App │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Local Podspecs │ │ │ │ ├── A.podspec.json │ │ │ │ ├── B.podspec.json │ │ │ │ ├── C.podspec.json │ │ │ │ ├── D.podspec.json │ │ │ │ ├── E.podspec.json │ │ │ │ ├── F.podspec.json │ │ │ │ └── G.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ │ ├── A-iOS │ │ │ │ ├── A-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-iOS-App-frameworks.sh │ │ │ │ ├── A-iOS-App-prefix.pch │ │ │ │ ├── A-iOS-Info.plist │ │ │ │ ├── A-iOS-Unit-Tests-Info.plist │ │ │ │ ├── A-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-iOS-dummy.m │ │ │ │ ├── A-iOS-prefix.pch │ │ │ │ ├── A-iOS-umbrella.h │ │ │ │ ├── A-iOS.app.debug.xcconfig │ │ │ │ ├── A-iOS.app.release.xcconfig │ │ │ │ ├── A-iOS.debug.xcconfig │ │ │ │ ├── A-iOS.modulemap │ │ │ │ ├── A-iOS.release.xcconfig │ │ │ │ ├── A-iOS.unit-tests.debug.xcconfig │ │ │ │ └── A-iOS.unit-tests.release.xcconfig │ │ │ │ ├── A-macOS │ │ │ │ ├── A-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-macOS-App-frameworks.sh │ │ │ │ ├── A-macOS-App-prefix.pch │ │ │ │ ├── A-macOS-Info.plist │ │ │ │ ├── A-macOS-Unit-Tests-Info.plist │ │ │ │ ├── A-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-macOS-dummy.m │ │ │ │ ├── A-macOS-prefix.pch │ │ │ │ ├── A-macOS-umbrella.h │ │ │ │ ├── A-macOS.app.debug.xcconfig │ │ │ │ ├── A-macOS.app.release.xcconfig │ │ │ │ ├── A-macOS.debug.xcconfig │ │ │ │ ├── A-macOS.modulemap │ │ │ │ ├── A-macOS.release.xcconfig │ │ │ │ ├── A-macOS.unit-tests.debug.xcconfig │ │ │ │ └── A-macOS.unit-tests.release.xcconfig │ │ │ │ ├── A-tvOS │ │ │ │ ├── A-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-tvOS-App-frameworks.sh │ │ │ │ ├── A-tvOS-App-prefix.pch │ │ │ │ ├── A-tvOS-Info.plist │ │ │ │ ├── A-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── A-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-tvOS-dummy.m │ │ │ │ ├── A-tvOS-prefix.pch │ │ │ │ ├── A-tvOS-umbrella.h │ │ │ │ ├── A-tvOS.app.debug.xcconfig │ │ │ │ ├── A-tvOS.app.release.xcconfig │ │ │ │ ├── A-tvOS.debug.xcconfig │ │ │ │ ├── A-tvOS.modulemap │ │ │ │ ├── A-tvOS.release.xcconfig │ │ │ │ ├── A-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── A-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── A-watchOS │ │ │ │ ├── A-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── A-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── A-watchOS-App-frameworks.sh │ │ │ │ ├── A-watchOS-App-prefix.pch │ │ │ │ ├── A-watchOS-Info.plist │ │ │ │ ├── A-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── A-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── A-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── A-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── A-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── A-watchOS-dummy.m │ │ │ │ ├── A-watchOS-prefix.pch │ │ │ │ ├── A-watchOS-umbrella.h │ │ │ │ ├── A-watchOS.app.debug.xcconfig │ │ │ │ ├── A-watchOS.app.release.xcconfig │ │ │ │ ├── A-watchOS.debug.xcconfig │ │ │ │ ├── A-watchOS.modulemap │ │ │ │ ├── A-watchOS.release.xcconfig │ │ │ │ ├── A-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── A-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── B-iOS │ │ │ │ ├── B-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-iOS-App-frameworks.sh │ │ │ │ ├── B-iOS-App-prefix.pch │ │ │ │ ├── B-iOS-Info.plist │ │ │ │ ├── B-iOS-Unit-Tests-Info.plist │ │ │ │ ├── B-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-iOS-dummy.m │ │ │ │ ├── B-iOS-prefix.pch │ │ │ │ ├── B-iOS-umbrella.h │ │ │ │ ├── B-iOS.app.debug.xcconfig │ │ │ │ ├── B-iOS.app.release.xcconfig │ │ │ │ ├── B-iOS.debug.xcconfig │ │ │ │ ├── B-iOS.modulemap │ │ │ │ ├── B-iOS.release.xcconfig │ │ │ │ ├── B-iOS.unit-tests.debug.xcconfig │ │ │ │ └── B-iOS.unit-tests.release.xcconfig │ │ │ │ ├── B-macOS │ │ │ │ ├── B-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-macOS-App-frameworks.sh │ │ │ │ ├── B-macOS-App-prefix.pch │ │ │ │ ├── B-macOS-Info.plist │ │ │ │ ├── B-macOS-Unit-Tests-Info.plist │ │ │ │ ├── B-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-macOS-dummy.m │ │ │ │ ├── B-macOS-prefix.pch │ │ │ │ ├── B-macOS-umbrella.h │ │ │ │ ├── B-macOS.app.debug.xcconfig │ │ │ │ ├── B-macOS.app.release.xcconfig │ │ │ │ ├── B-macOS.debug.xcconfig │ │ │ │ ├── B-macOS.modulemap │ │ │ │ ├── B-macOS.release.xcconfig │ │ │ │ ├── B-macOS.unit-tests.debug.xcconfig │ │ │ │ └── B-macOS.unit-tests.release.xcconfig │ │ │ │ ├── B-tvOS │ │ │ │ ├── B-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-tvOS-App-frameworks.sh │ │ │ │ ├── B-tvOS-App-prefix.pch │ │ │ │ ├── B-tvOS-Info.plist │ │ │ │ ├── B-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── B-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-tvOS-dummy.m │ │ │ │ ├── B-tvOS-prefix.pch │ │ │ │ ├── B-tvOS-umbrella.h │ │ │ │ ├── B-tvOS.app.debug.xcconfig │ │ │ │ ├── B-tvOS.app.release.xcconfig │ │ │ │ ├── B-tvOS.debug.xcconfig │ │ │ │ ├── B-tvOS.modulemap │ │ │ │ ├── B-tvOS.release.xcconfig │ │ │ │ ├── B-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── B-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── B-watchOS │ │ │ │ ├── B-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── B-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── B-watchOS-App-frameworks.sh │ │ │ │ ├── B-watchOS-App-prefix.pch │ │ │ │ ├── B-watchOS-Info.plist │ │ │ │ ├── B-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── B-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── B-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── B-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── B-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── B-watchOS-dummy.m │ │ │ │ ├── B-watchOS-prefix.pch │ │ │ │ ├── B-watchOS-umbrella.h │ │ │ │ ├── B-watchOS.app.debug.xcconfig │ │ │ │ ├── B-watchOS.app.release.xcconfig │ │ │ │ ├── B-watchOS.debug.xcconfig │ │ │ │ ├── B-watchOS.modulemap │ │ │ │ ├── B-watchOS.release.xcconfig │ │ │ │ ├── B-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── B-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── C-iOS │ │ │ │ ├── C-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-iOS-App-frameworks.sh │ │ │ │ ├── C-iOS-App-prefix.pch │ │ │ │ ├── C-iOS-Info.plist │ │ │ │ ├── C-iOS-Unit-Tests-Info.plist │ │ │ │ ├── C-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-iOS-dummy.m │ │ │ │ ├── C-iOS-prefix.pch │ │ │ │ ├── C-iOS-umbrella.h │ │ │ │ ├── C-iOS.app.debug.xcconfig │ │ │ │ ├── C-iOS.app.release.xcconfig │ │ │ │ ├── C-iOS.debug.xcconfig │ │ │ │ ├── C-iOS.modulemap │ │ │ │ ├── C-iOS.release.xcconfig │ │ │ │ ├── C-iOS.unit-tests.debug.xcconfig │ │ │ │ └── C-iOS.unit-tests.release.xcconfig │ │ │ │ ├── C-macOS │ │ │ │ ├── C-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-macOS-App-frameworks.sh │ │ │ │ ├── C-macOS-App-prefix.pch │ │ │ │ ├── C-macOS-Info.plist │ │ │ │ ├── C-macOS-Unit-Tests-Info.plist │ │ │ │ ├── C-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-macOS-dummy.m │ │ │ │ ├── C-macOS-prefix.pch │ │ │ │ ├── C-macOS-umbrella.h │ │ │ │ ├── C-macOS.app.debug.xcconfig │ │ │ │ ├── C-macOS.app.release.xcconfig │ │ │ │ ├── C-macOS.debug.xcconfig │ │ │ │ ├── C-macOS.modulemap │ │ │ │ ├── C-macOS.release.xcconfig │ │ │ │ ├── C-macOS.unit-tests.debug.xcconfig │ │ │ │ └── C-macOS.unit-tests.release.xcconfig │ │ │ │ ├── C-tvOS │ │ │ │ ├── C-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-tvOS-App-frameworks.sh │ │ │ │ ├── C-tvOS-App-prefix.pch │ │ │ │ ├── C-tvOS-Info.plist │ │ │ │ ├── C-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── C-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-tvOS-dummy.m │ │ │ │ ├── C-tvOS-prefix.pch │ │ │ │ ├── C-tvOS-umbrella.h │ │ │ │ ├── C-tvOS.app.debug.xcconfig │ │ │ │ ├── C-tvOS.app.release.xcconfig │ │ │ │ ├── C-tvOS.debug.xcconfig │ │ │ │ ├── C-tvOS.modulemap │ │ │ │ ├── C-tvOS.release.xcconfig │ │ │ │ ├── C-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── C-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── C-watchOS │ │ │ │ ├── C-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── C-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── C-watchOS-App-frameworks.sh │ │ │ │ ├── C-watchOS-App-prefix.pch │ │ │ │ ├── C-watchOS-Info.plist │ │ │ │ ├── C-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── C-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── C-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── C-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── C-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── C-watchOS-dummy.m │ │ │ │ ├── C-watchOS-prefix.pch │ │ │ │ ├── C-watchOS-umbrella.h │ │ │ │ ├── C-watchOS.app.debug.xcconfig │ │ │ │ ├── C-watchOS.app.release.xcconfig │ │ │ │ ├── C-watchOS.debug.xcconfig │ │ │ │ ├── C-watchOS.modulemap │ │ │ │ ├── C-watchOS.release.xcconfig │ │ │ │ ├── C-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── C-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── D-iOS │ │ │ │ ├── D-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-iOS-App-frameworks.sh │ │ │ │ ├── D-iOS-App-prefix.pch │ │ │ │ ├── D-iOS-Info.plist │ │ │ │ ├── D-iOS-Unit-Tests-Info.plist │ │ │ │ ├── D-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-iOS-dummy.m │ │ │ │ ├── D-iOS-prefix.pch │ │ │ │ ├── D-iOS-umbrella.h │ │ │ │ ├── D-iOS.app.debug.xcconfig │ │ │ │ ├── D-iOS.app.release.xcconfig │ │ │ │ ├── D-iOS.debug.xcconfig │ │ │ │ ├── D-iOS.modulemap │ │ │ │ ├── D-iOS.release.xcconfig │ │ │ │ ├── D-iOS.unit-tests.debug.xcconfig │ │ │ │ └── D-iOS.unit-tests.release.xcconfig │ │ │ │ ├── D-macOS │ │ │ │ ├── D-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-macOS-App-frameworks.sh │ │ │ │ ├── D-macOS-App-prefix.pch │ │ │ │ ├── D-macOS-Info.plist │ │ │ │ ├── D-macOS-Unit-Tests-Info.plist │ │ │ │ ├── D-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-macOS-dummy.m │ │ │ │ ├── D-macOS-prefix.pch │ │ │ │ ├── D-macOS-umbrella.h │ │ │ │ ├── D-macOS.app.debug.xcconfig │ │ │ │ ├── D-macOS.app.release.xcconfig │ │ │ │ ├── D-macOS.debug.xcconfig │ │ │ │ ├── D-macOS.modulemap │ │ │ │ ├── D-macOS.release.xcconfig │ │ │ │ ├── D-macOS.unit-tests.debug.xcconfig │ │ │ │ └── D-macOS.unit-tests.release.xcconfig │ │ │ │ ├── D-tvOS │ │ │ │ ├── D-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-tvOS-App-frameworks.sh │ │ │ │ ├── D-tvOS-App-prefix.pch │ │ │ │ ├── D-tvOS-Info.plist │ │ │ │ ├── D-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── D-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-tvOS-dummy.m │ │ │ │ ├── D-tvOS-prefix.pch │ │ │ │ ├── D-tvOS-umbrella.h │ │ │ │ ├── D-tvOS.app.debug.xcconfig │ │ │ │ ├── D-tvOS.app.release.xcconfig │ │ │ │ ├── D-tvOS.debug.xcconfig │ │ │ │ ├── D-tvOS.modulemap │ │ │ │ ├── D-tvOS.release.xcconfig │ │ │ │ ├── D-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── D-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── D-watchOS │ │ │ │ ├── D-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── D-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── D-watchOS-App-frameworks.sh │ │ │ │ ├── D-watchOS-App-prefix.pch │ │ │ │ ├── D-watchOS-Info.plist │ │ │ │ ├── D-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── D-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── D-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── D-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── D-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── D-watchOS-dummy.m │ │ │ │ ├── D-watchOS-prefix.pch │ │ │ │ ├── D-watchOS-umbrella.h │ │ │ │ ├── D-watchOS.app.debug.xcconfig │ │ │ │ ├── D-watchOS.app.release.xcconfig │ │ │ │ ├── D-watchOS.debug.xcconfig │ │ │ │ ├── D-watchOS.modulemap │ │ │ │ ├── D-watchOS.release.xcconfig │ │ │ │ ├── D-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── D-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── E-iOS │ │ │ │ ├── E-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-iOS-App-frameworks.sh │ │ │ │ ├── E-iOS-App-prefix.pch │ │ │ │ ├── E-iOS-Info.plist │ │ │ │ ├── E-iOS-Unit-Tests-Info.plist │ │ │ │ ├── E-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-iOS-dummy.m │ │ │ │ ├── E-iOS-prefix.pch │ │ │ │ ├── E-iOS-umbrella.h │ │ │ │ ├── E-iOS.app.debug.xcconfig │ │ │ │ ├── E-iOS.app.release.xcconfig │ │ │ │ ├── E-iOS.debug.xcconfig │ │ │ │ ├── E-iOS.modulemap │ │ │ │ ├── E-iOS.release.xcconfig │ │ │ │ ├── E-iOS.unit-tests.debug.xcconfig │ │ │ │ └── E-iOS.unit-tests.release.xcconfig │ │ │ │ ├── E-macOS │ │ │ │ ├── E-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-macOS-App-frameworks.sh │ │ │ │ ├── E-macOS-App-prefix.pch │ │ │ │ ├── E-macOS-Info.plist │ │ │ │ ├── E-macOS-Unit-Tests-Info.plist │ │ │ │ ├── E-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-macOS-dummy.m │ │ │ │ ├── E-macOS-prefix.pch │ │ │ │ ├── E-macOS-umbrella.h │ │ │ │ ├── E-macOS.app.debug.xcconfig │ │ │ │ ├── E-macOS.app.release.xcconfig │ │ │ │ ├── E-macOS.debug.xcconfig │ │ │ │ ├── E-macOS.modulemap │ │ │ │ ├── E-macOS.release.xcconfig │ │ │ │ ├── E-macOS.unit-tests.debug.xcconfig │ │ │ │ └── E-macOS.unit-tests.release.xcconfig │ │ │ │ ├── E-tvOS │ │ │ │ ├── E-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-tvOS-App-frameworks.sh │ │ │ │ ├── E-tvOS-App-prefix.pch │ │ │ │ ├── E-tvOS-Info.plist │ │ │ │ ├── E-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── E-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-tvOS-dummy.m │ │ │ │ ├── E-tvOS-prefix.pch │ │ │ │ ├── E-tvOS-umbrella.h │ │ │ │ ├── E-tvOS.app.debug.xcconfig │ │ │ │ ├── E-tvOS.app.release.xcconfig │ │ │ │ ├── E-tvOS.debug.xcconfig │ │ │ │ ├── E-tvOS.modulemap │ │ │ │ ├── E-tvOS.release.xcconfig │ │ │ │ ├── E-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── E-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── E-watchOS │ │ │ │ ├── E-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── E-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── E-watchOS-App-frameworks.sh │ │ │ │ ├── E-watchOS-App-prefix.pch │ │ │ │ ├── E-watchOS-Info.plist │ │ │ │ ├── E-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── E-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── E-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── E-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── E-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── E-watchOS-dummy.m │ │ │ │ ├── E-watchOS-prefix.pch │ │ │ │ ├── E-watchOS-umbrella.h │ │ │ │ ├── E-watchOS.app.debug.xcconfig │ │ │ │ ├── E-watchOS.app.release.xcconfig │ │ │ │ ├── E-watchOS.debug.xcconfig │ │ │ │ ├── E-watchOS.modulemap │ │ │ │ ├── E-watchOS.release.xcconfig │ │ │ │ ├── E-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── E-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── F-iOS │ │ │ │ ├── F-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-iOS-App-frameworks.sh │ │ │ │ ├── F-iOS-App-prefix.pch │ │ │ │ ├── F-iOS-Info.plist │ │ │ │ ├── F-iOS-Unit-Tests-Info.plist │ │ │ │ ├── F-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-iOS-dummy.m │ │ │ │ ├── F-iOS-prefix.pch │ │ │ │ ├── F-iOS-umbrella.h │ │ │ │ ├── F-iOS.app.debug.xcconfig │ │ │ │ ├── F-iOS.app.release.xcconfig │ │ │ │ ├── F-iOS.debug.xcconfig │ │ │ │ ├── F-iOS.modulemap │ │ │ │ ├── F-iOS.release.xcconfig │ │ │ │ ├── F-iOS.unit-tests.debug.xcconfig │ │ │ │ └── F-iOS.unit-tests.release.xcconfig │ │ │ │ ├── F-macOS │ │ │ │ ├── F-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-macOS-App-frameworks.sh │ │ │ │ ├── F-macOS-App-prefix.pch │ │ │ │ ├── F-macOS-Info.plist │ │ │ │ ├── F-macOS-Unit-Tests-Info.plist │ │ │ │ ├── F-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-macOS-dummy.m │ │ │ │ ├── F-macOS-prefix.pch │ │ │ │ ├── F-macOS-umbrella.h │ │ │ │ ├── F-macOS.app.debug.xcconfig │ │ │ │ ├── F-macOS.app.release.xcconfig │ │ │ │ ├── F-macOS.debug.xcconfig │ │ │ │ ├── F-macOS.modulemap │ │ │ │ ├── F-macOS.release.xcconfig │ │ │ │ ├── F-macOS.unit-tests.debug.xcconfig │ │ │ │ └── F-macOS.unit-tests.release.xcconfig │ │ │ │ ├── F-tvOS │ │ │ │ ├── F-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-tvOS-App-frameworks.sh │ │ │ │ ├── F-tvOS-App-prefix.pch │ │ │ │ ├── F-tvOS-Info.plist │ │ │ │ ├── F-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── F-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-tvOS-dummy.m │ │ │ │ ├── F-tvOS-prefix.pch │ │ │ │ ├── F-tvOS-umbrella.h │ │ │ │ ├── F-tvOS.app.debug.xcconfig │ │ │ │ ├── F-tvOS.app.release.xcconfig │ │ │ │ ├── F-tvOS.debug.xcconfig │ │ │ │ ├── F-tvOS.modulemap │ │ │ │ ├── F-tvOS.release.xcconfig │ │ │ │ ├── F-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── F-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── F-watchOS │ │ │ │ ├── F-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── F-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── F-watchOS-App-frameworks.sh │ │ │ │ ├── F-watchOS-App-prefix.pch │ │ │ │ ├── F-watchOS-Info.plist │ │ │ │ ├── F-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── F-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── F-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── F-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── F-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── F-watchOS-dummy.m │ │ │ │ ├── F-watchOS-prefix.pch │ │ │ │ ├── F-watchOS-umbrella.h │ │ │ │ ├── F-watchOS.app.debug.xcconfig │ │ │ │ ├── F-watchOS.app.release.xcconfig │ │ │ │ ├── F-watchOS.debug.xcconfig │ │ │ │ ├── F-watchOS.modulemap │ │ │ │ ├── F-watchOS.release.xcconfig │ │ │ │ ├── F-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── F-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── G-iOS │ │ │ │ ├── G-iOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── G-iOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── G-iOS-App-frameworks.sh │ │ │ │ ├── G-iOS-App-prefix.pch │ │ │ │ ├── G-iOS-Info.plist │ │ │ │ ├── G-iOS-Unit-Tests-Info.plist │ │ │ │ ├── G-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── G-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── G-iOS-Unit-Tests-frameworks.sh │ │ │ │ ├── G-iOS-Unit-Tests-prefix.pch │ │ │ │ ├── G-iOS-dummy.m │ │ │ │ ├── G-iOS-prefix.pch │ │ │ │ ├── G-iOS-umbrella.h │ │ │ │ ├── G-iOS.app.debug.xcconfig │ │ │ │ ├── G-iOS.app.release.xcconfig │ │ │ │ ├── G-iOS.debug.xcconfig │ │ │ │ ├── G-iOS.modulemap │ │ │ │ ├── G-iOS.release.xcconfig │ │ │ │ ├── G-iOS.unit-tests.debug.xcconfig │ │ │ │ └── G-iOS.unit-tests.release.xcconfig │ │ │ │ ├── G-macOS │ │ │ │ ├── G-macOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── G-macOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── G-macOS-App-frameworks.sh │ │ │ │ ├── G-macOS-App-prefix.pch │ │ │ │ ├── G-macOS-Info.plist │ │ │ │ ├── G-macOS-Unit-Tests-Info.plist │ │ │ │ ├── G-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── G-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── G-macOS-Unit-Tests-frameworks.sh │ │ │ │ ├── G-macOS-Unit-Tests-prefix.pch │ │ │ │ ├── G-macOS-dummy.m │ │ │ │ ├── G-macOS-prefix.pch │ │ │ │ ├── G-macOS-umbrella.h │ │ │ │ ├── G-macOS.app.debug.xcconfig │ │ │ │ ├── G-macOS.app.release.xcconfig │ │ │ │ ├── G-macOS.debug.xcconfig │ │ │ │ ├── G-macOS.modulemap │ │ │ │ ├── G-macOS.release.xcconfig │ │ │ │ ├── G-macOS.unit-tests.debug.xcconfig │ │ │ │ └── G-macOS.unit-tests.release.xcconfig │ │ │ │ ├── G-tvOS │ │ │ │ ├── G-tvOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── G-tvOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── G-tvOS-App-frameworks.sh │ │ │ │ ├── G-tvOS-App-prefix.pch │ │ │ │ ├── G-tvOS-Info.plist │ │ │ │ ├── G-tvOS-Unit-Tests-Info.plist │ │ │ │ ├── G-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── G-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── G-tvOS-Unit-Tests-frameworks.sh │ │ │ │ ├── G-tvOS-Unit-Tests-prefix.pch │ │ │ │ ├── G-tvOS-dummy.m │ │ │ │ ├── G-tvOS-prefix.pch │ │ │ │ ├── G-tvOS-umbrella.h │ │ │ │ ├── G-tvOS.app.debug.xcconfig │ │ │ │ ├── G-tvOS.app.release.xcconfig │ │ │ │ ├── G-tvOS.debug.xcconfig │ │ │ │ ├── G-tvOS.modulemap │ │ │ │ ├── G-tvOS.release.xcconfig │ │ │ │ ├── G-tvOS.unit-tests.debug.xcconfig │ │ │ │ └── G-tvOS.unit-tests.release.xcconfig │ │ │ │ ├── G-watchOS │ │ │ │ ├── G-watchOS-App-frameworks-input-files.xcfilelist │ │ │ │ ├── G-watchOS-App-frameworks-output-files.xcfilelist │ │ │ │ ├── G-watchOS-App-frameworks.sh │ │ │ │ ├── G-watchOS-App-prefix.pch │ │ │ │ ├── G-watchOS-Info.plist │ │ │ │ ├── G-watchOS-Unit-Tests-Info.plist │ │ │ │ ├── G-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ │ ├── G-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ │ ├── G-watchOS-Unit-Tests-frameworks.sh │ │ │ │ ├── G-watchOS-Unit-Tests-prefix.pch │ │ │ │ ├── G-watchOS-dummy.m │ │ │ │ ├── G-watchOS-prefix.pch │ │ │ │ ├── G-watchOS-umbrella.h │ │ │ │ ├── G-watchOS.app.debug.xcconfig │ │ │ │ ├── G-watchOS.app.release.xcconfig │ │ │ │ ├── G-watchOS.debug.xcconfig │ │ │ │ ├── G-watchOS.modulemap │ │ │ │ ├── G-watchOS.release.xcconfig │ │ │ │ ├── G-watchOS.unit-tests.debug.xcconfig │ │ │ │ └── G-watchOS.unit-tests.release.xcconfig │ │ │ │ ├── OnlyPre-iOS │ │ │ │ ├── OnlyPre-iOS.debug.xcconfig │ │ │ │ └── OnlyPre-iOS.release.xcconfig │ │ │ │ ├── OnlyPre-macOS │ │ │ │ ├── OnlyPre-macOS.debug.xcconfig │ │ │ │ └── OnlyPre-macOS.release.xcconfig │ │ │ │ ├── OnlyPre-tvOS │ │ │ │ ├── OnlyPre-tvOS.debug.xcconfig │ │ │ │ └── OnlyPre-tvOS.release.xcconfig │ │ │ │ ├── OnlyPre-watchOS │ │ │ │ ├── OnlyPre-watchOS.debug.xcconfig │ │ │ │ └── OnlyPre-watchOS.release.xcconfig │ │ │ │ ├── Pods-App-iOS │ │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ │ ├── Pods-App-iOS.modulemap │ │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ │ ├── Pods-App-macOS │ │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ │ ├── Pods-App-macOS.modulemap │ │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ │ ├── Pods-App-tvOS │ │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ │ ├── Pods-App-watchOS │ │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ │ └── Pods-App-watchOS.release.xcconfig │ │ │ │ ├── Public-iOS │ │ │ │ ├── Public-iOS.debug.xcconfig │ │ │ │ └── Public-iOS.release.xcconfig │ │ │ │ ├── Public-macOS │ │ │ │ ├── Public-macOS.debug.xcconfig │ │ │ │ └── Public-macOS.release.xcconfig │ │ │ │ ├── Public-tvOS │ │ │ │ ├── Public-tvOS.debug.xcconfig │ │ │ │ └── Public-tvOS.release.xcconfig │ │ │ │ └── Public-watchOS │ │ │ │ ├── Public-watchOS.debug.xcconfig │ │ │ │ └── Public-watchOS.release.xcconfig │ │ │ ├── Workspace.xcodeproj │ │ │ └── Workspace.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ ├── before │ │ ├── Frameworks │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── a_main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── b_main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── c_main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ ├── d │ │ │ │ ├── App │ │ │ │ │ └── d_main.swift │ │ │ │ ├── D.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── d_Internal.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.m │ │ │ │ │ └── d.swift │ │ │ │ └── Tests │ │ │ │ │ ├── dTests.m │ │ │ │ │ └── d_tests.swift │ │ │ ├── e │ │ │ │ ├── App │ │ │ │ │ └── e_main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── e_Internal.h │ │ │ │ │ ├── e.h │ │ │ │ │ ├── e.m │ │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ │ ├── eTests.m │ │ │ │ │ └── e_tests.swift │ │ │ ├── f │ │ │ │ ├── App │ │ │ │ │ └── f_main.swift │ │ │ │ ├── F.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── f_Internal.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── f.m │ │ │ │ │ └── f.swift │ │ │ │ └── Tests │ │ │ │ │ ├── fTests.m │ │ │ │ │ └── f_tests.swift │ │ │ └── g │ │ │ │ ├── App │ │ │ │ └── g_main.swift │ │ │ │ ├── G.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── g_Internal.h │ │ │ │ ├── g.h │ │ │ │ ├── g.m │ │ │ │ └── g.swift │ │ │ │ └── Tests │ │ │ │ ├── gTests.m │ │ │ │ └── g_tests.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── Pods │ │ │ ├── Headers │ │ │ ├── Private │ │ │ │ ├── A │ │ │ │ │ ├── a.h │ │ │ │ │ └── a_Internal.h │ │ │ │ ├── B │ │ │ │ │ ├── b.h │ │ │ │ │ └── b_Internal.h │ │ │ │ ├── C │ │ │ │ │ ├── c.h │ │ │ │ │ └── c_Internal.h │ │ │ │ ├── D │ │ │ │ │ ├── d.h │ │ │ │ │ └── d_Internal.h │ │ │ │ ├── E │ │ │ │ │ ├── e.h │ │ │ │ │ └── e_Internal.h │ │ │ │ ├── F │ │ │ │ │ ├── f.h │ │ │ │ │ └── f_Internal.h │ │ │ │ └── G │ │ │ │ │ ├── g.h │ │ │ │ │ └── g_Internal.h │ │ │ └── Public │ │ │ │ ├── A │ │ │ │ ├── A-umbrella.h │ │ │ │ ├── A.modulemap │ │ │ │ └── a.h │ │ │ │ ├── B │ │ │ │ ├── B-umbrella.h │ │ │ │ ├── B.modulemap │ │ │ │ └── b.h │ │ │ │ ├── C │ │ │ │ ├── C-umbrella.h │ │ │ │ ├── C.modulemap │ │ │ │ └── c.h │ │ │ │ ├── D │ │ │ │ ├── D-umbrella.h │ │ │ │ ├── D.modulemap │ │ │ │ └── d.h │ │ │ │ ├── E │ │ │ │ ├── E-umbrella.h │ │ │ │ ├── E.modulemap │ │ │ │ └── e.h │ │ │ │ ├── F │ │ │ │ ├── F-umbrella.h │ │ │ │ ├── F.modulemap │ │ │ │ └── f.h │ │ │ │ └── G │ │ │ │ ├── G-umbrella.h │ │ │ │ ├── G.modulemap │ │ │ │ └── g.h │ │ │ ├── Local Podspecs │ │ │ ├── A.podspec.json │ │ │ ├── B.podspec.json │ │ │ ├── C.podspec.json │ │ │ ├── D.podspec.json │ │ │ ├── E.podspec.json │ │ │ ├── F.podspec.json │ │ │ └── G.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Target Support Files │ │ │ ├── A │ │ │ ├── A-Unit-Tests-Info.plist │ │ │ ├── A-Unit-Tests-frameworks.sh │ │ │ ├── A-Unit-Tests-prefix.pch │ │ │ ├── A-Unit-Tests-resources.sh │ │ │ ├── A-dummy.m │ │ │ ├── A-prefix.pch │ │ │ ├── A.unit.xcconfig │ │ │ └── A.xcconfig │ │ │ ├── B │ │ │ ├── B-Unit-Tests-Info.plist │ │ │ ├── B-Unit-Tests-frameworks.sh │ │ │ ├── B-Unit-Tests-prefix.pch │ │ │ ├── B-Unit-Tests-resources.sh │ │ │ ├── B-dummy.m │ │ │ ├── B-prefix.pch │ │ │ ├── B.unit.xcconfig │ │ │ └── B.xcconfig │ │ │ ├── C │ │ │ ├── C-Unit-Tests-Info.plist │ │ │ ├── C-Unit-Tests-frameworks.sh │ │ │ ├── C-Unit-Tests-prefix.pch │ │ │ ├── C-Unit-Tests-resources.sh │ │ │ ├── C-dummy.m │ │ │ ├── C-prefix.pch │ │ │ ├── C.unit.xcconfig │ │ │ └── C.xcconfig │ │ │ ├── D │ │ │ ├── D-Unit-Tests-Info.plist │ │ │ ├── D-Unit-Tests-frameworks.sh │ │ │ ├── D-Unit-Tests-prefix.pch │ │ │ ├── D-Unit-Tests-resources.sh │ │ │ ├── D-dummy.m │ │ │ ├── D-prefix.pch │ │ │ ├── D.unit.xcconfig │ │ │ └── D.xcconfig │ │ │ ├── E │ │ │ ├── E-Unit-Tests-Info.plist │ │ │ ├── E-Unit-Tests-frameworks.sh │ │ │ ├── E-Unit-Tests-prefix.pch │ │ │ ├── E-Unit-Tests-resources.sh │ │ │ ├── E-dummy.m │ │ │ ├── E-prefix.pch │ │ │ ├── E.unit.xcconfig │ │ │ └── E.xcconfig │ │ │ ├── F │ │ │ ├── F-Unit-Tests-Info.plist │ │ │ ├── F-Unit-Tests-frameworks.sh │ │ │ ├── F-Unit-Tests-prefix.pch │ │ │ ├── F-Unit-Tests-resources.sh │ │ │ ├── F-dummy.m │ │ │ ├── F-prefix.pch │ │ │ ├── F.unit.xcconfig │ │ │ └── F.xcconfig │ │ │ ├── G │ │ │ ├── G-Unit-Tests-Info.plist │ │ │ ├── G-Unit-Tests-frameworks.sh │ │ │ ├── G-Unit-Tests-prefix.pch │ │ │ ├── G-Unit-Tests-resources.sh │ │ │ ├── G-dummy.m │ │ │ ├── G-prefix.pch │ │ │ ├── G.unit.xcconfig │ │ │ └── G.xcconfig │ │ │ ├── Pods-App │ │ │ ├── Pods-App-acknowledgements.markdown │ │ │ ├── Pods-App-acknowledgements.plist │ │ │ ├── Pods-App-dummy.m │ │ │ ├── Pods-App-frameworks.sh │ │ │ ├── Pods-App-resources.sh │ │ │ ├── Pods-App-umbrella.h │ │ │ ├── Pods-App.debug.xcconfig │ │ │ ├── Pods-App.modulemap │ │ │ └── Pods-App.release.xcconfig │ │ │ └── Pods-AppTests │ │ │ ├── Pods-AppTests-acknowledgements.markdown │ │ │ ├── Pods-AppTests-acknowledgements.plist │ │ │ ├── Pods-AppTests-dummy.m │ │ │ ├── Pods-AppTests-frameworks.sh │ │ │ ├── Pods-AppTests-resources.sh │ │ │ ├── Pods-AppTests-umbrella.h │ │ │ ├── Pods-AppTests.debug.xcconfig │ │ │ ├── Pods-AppTests.modulemap │ │ │ └── Pods-AppTests.release.xcconfig │ └── spec.yml ├── specs-repos │ ├── master │ │ ├── Forkable │ │ │ └── 1.0.0 │ │ │ │ └── Forkable.podspec │ │ ├── OnlyPre │ │ │ └── 1.0.0.pre.1 │ │ │ │ └── OnlyPre.podspec │ │ ├── Public │ │ │ └── 3.0.0 │ │ │ │ └── Public.podspec │ │ └── url │ ├── private │ │ ├── Forkable │ │ │ └── 1.0.0-internal.3 │ │ │ │ └── Forkable.podspec │ │ ├── UsesForkable │ │ │ └── 1.0.0 │ │ │ │ └── UsesForkable.podspec │ │ └── url │ └── trunk │ │ ├── .url │ │ ├── CocoaPods-version.yml │ │ ├── CocoaPods-version.yml.etag │ │ ├── all_pods_versions_e_0_7.txt │ │ └── all_pods_versions_e_0_7.txt.etag ├── swift-objc-bridging-header │ ├── after │ │ ├── .gen_config.yml │ │ ├── AppHost │ │ │ ├── App-Host-Bridging-Header.h │ │ │ ├── Subdir │ │ │ │ ├── other.h │ │ │ │ └── other.swift │ │ │ └── main.m │ │ ├── Foo.podspec │ │ ├── Sources │ │ │ └── Foo.m │ │ ├── Tests │ │ │ └── FooTests.m │ │ ├── execution_output.txt │ │ └── gen │ │ │ └── Foo │ │ │ ├── App-iOS │ │ │ ├── Info.plist │ │ │ └── LaunchScreen.storyboard │ │ │ ├── CocoaPods.podfile.yaml │ │ │ ├── Foo.xcodeproj │ │ │ ├── Foo.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ ├── Local Podspecs │ │ │ └── Foo.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ └── Target Support Files │ │ │ ├── Foo-iOS │ │ │ ├── Foo-iOS-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-Info.plist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-iOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-iOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-iOS-dummy.m │ │ │ ├── Foo-iOS-prefix.pch │ │ │ ├── Foo-iOS-umbrella.h │ │ │ ├── Foo-iOS.debug.xcconfig │ │ │ ├── Foo-iOS.modulemap │ │ │ ├── Foo-iOS.release.xcconfig │ │ │ ├── Foo-iOS.unit-tests.debug.xcconfig │ │ │ └── Foo-iOS.unit-tests.release.xcconfig │ │ │ ├── Foo-macOS │ │ │ ├── Foo-macOS-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-Info.plist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-macOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-macOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-macOS-dummy.m │ │ │ ├── Foo-macOS-prefix.pch │ │ │ ├── Foo-macOS-umbrella.h │ │ │ ├── Foo-macOS.debug.xcconfig │ │ │ ├── Foo-macOS.modulemap │ │ │ ├── Foo-macOS.release.xcconfig │ │ │ ├── Foo-macOS.unit-tests.debug.xcconfig │ │ │ └── Foo-macOS.unit-tests.release.xcconfig │ │ │ ├── Foo-tvOS │ │ │ ├── Foo-tvOS-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-Info.plist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-tvOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-tvOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-tvOS-dummy.m │ │ │ ├── Foo-tvOS-prefix.pch │ │ │ ├── Foo-tvOS-umbrella.h │ │ │ ├── Foo-tvOS.debug.xcconfig │ │ │ ├── Foo-tvOS.modulemap │ │ │ ├── Foo-tvOS.release.xcconfig │ │ │ ├── Foo-tvOS.unit-tests.debug.xcconfig │ │ │ └── Foo-tvOS.unit-tests.release.xcconfig │ │ │ ├── Foo-watchOS │ │ │ ├── Foo-watchOS-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-Info.plist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-input-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist │ │ │ ├── Foo-watchOS-Unit-Tests-frameworks.sh │ │ │ ├── Foo-watchOS-Unit-Tests-prefix.pch │ │ │ ├── Foo-watchOS-dummy.m │ │ │ ├── Foo-watchOS-prefix.pch │ │ │ ├── Foo-watchOS-umbrella.h │ │ │ ├── Foo-watchOS.debug.xcconfig │ │ │ ├── Foo-watchOS.modulemap │ │ │ ├── Foo-watchOS.release.xcconfig │ │ │ ├── Foo-watchOS.unit-tests.debug.xcconfig │ │ │ └── Foo-watchOS.unit-tests.release.xcconfig │ │ │ ├── Pods-App-iOS │ │ │ ├── Pods-App-iOS-Info.plist │ │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ │ ├── Pods-App-iOS-dummy.m │ │ │ ├── Pods-App-iOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-iOS-frameworks.sh │ │ │ ├── Pods-App-iOS-umbrella.h │ │ │ ├── Pods-App-iOS.debug.xcconfig │ │ │ ├── Pods-App-iOS.modulemap │ │ │ └── Pods-App-iOS.release.xcconfig │ │ │ ├── Pods-App-macOS │ │ │ ├── Pods-App-macOS-Info.plist │ │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ │ ├── Pods-App-macOS-dummy.m │ │ │ ├── Pods-App-macOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-macOS-frameworks.sh │ │ │ ├── Pods-App-macOS-umbrella.h │ │ │ ├── Pods-App-macOS.debug.xcconfig │ │ │ ├── Pods-App-macOS.modulemap │ │ │ └── Pods-App-macOS.release.xcconfig │ │ │ ├── Pods-App-tvOS │ │ │ ├── Pods-App-tvOS-Info.plist │ │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ │ ├── Pods-App-tvOS-dummy.m │ │ │ ├── Pods-App-tvOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-tvOS-frameworks.sh │ │ │ ├── Pods-App-tvOS-umbrella.h │ │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ │ ├── Pods-App-tvOS.modulemap │ │ │ └── Pods-App-tvOS.release.xcconfig │ │ │ └── Pods-App-watchOS │ │ │ ├── Pods-App-watchOS-Info.plist │ │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ │ ├── Pods-App-watchOS-dummy.m │ │ │ ├── Pods-App-watchOS-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-App-watchOS-frameworks.sh │ │ │ ├── Pods-App-watchOS-umbrella.h │ │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ │ ├── Pods-App-watchOS.modulemap │ │ │ └── Pods-App-watchOS.release.xcconfig │ ├── before │ │ ├── .gen_config.yml │ │ ├── AppHost │ │ │ ├── App-Host-Bridging-Header.h │ │ │ ├── Subdir │ │ │ │ ├── other.h │ │ │ │ └── other.swift │ │ │ └── main.m │ │ ├── Foo.podspec │ │ ├── Sources │ │ │ └── Foo.m │ │ └── Tests │ │ │ └── FooTests.m │ └── spec.yml └── use_libraries │ ├── .gen_config.yml │ ├── after │ ├── .gen_config.yml │ ├── Foo.podspec │ ├── Sources │ │ └── Foo.m │ ├── Tests │ │ └── FooTests.m │ ├── execution_output.txt │ └── gen │ │ └── Foo │ │ ├── App-iOS │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ │ ├── App-macOS │ │ └── main.m │ │ ├── App-tvOS │ │ └── main.m │ │ ├── App-watchOS │ │ └── main.m │ │ ├── CocoaPods.podfile.yaml │ │ ├── Foo.xcodeproj │ │ ├── Foo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Podfile.lock │ │ └── Pods │ │ ├── Local Podspecs │ │ └── Foo.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── Target Support Files │ │ ├── Foo-iOS │ │ ├── Foo-iOS-Unit-Tests-Info.plist │ │ ├── Foo-iOS-Unit-Tests-prefix.pch │ │ ├── Foo-iOS-dummy.m │ │ ├── Foo-iOS-prefix.pch │ │ ├── Foo-iOS.debug.xcconfig │ │ ├── Foo-iOS.release.xcconfig │ │ ├── Foo-iOS.unit-tests.debug.xcconfig │ │ └── Foo-iOS.unit-tests.release.xcconfig │ │ ├── Foo-macOS │ │ ├── Foo-macOS-Unit-Tests-Info.plist │ │ ├── Foo-macOS-Unit-Tests-prefix.pch │ │ ├── Foo-macOS-dummy.m │ │ ├── Foo-macOS-prefix.pch │ │ ├── Foo-macOS.debug.xcconfig │ │ ├── Foo-macOS.release.xcconfig │ │ ├── Foo-macOS.unit-tests.debug.xcconfig │ │ └── Foo-macOS.unit-tests.release.xcconfig │ │ ├── Foo-tvOS │ │ ├── Foo-tvOS-Unit-Tests-Info.plist │ │ ├── Foo-tvOS-Unit-Tests-prefix.pch │ │ ├── Foo-tvOS-dummy.m │ │ ├── Foo-tvOS-prefix.pch │ │ ├── Foo-tvOS.debug.xcconfig │ │ ├── Foo-tvOS.release.xcconfig │ │ ├── Foo-tvOS.unit-tests.debug.xcconfig │ │ └── Foo-tvOS.unit-tests.release.xcconfig │ │ ├── Foo-watchOS │ │ ├── Foo-watchOS-Unit-Tests-Info.plist │ │ ├── Foo-watchOS-Unit-Tests-prefix.pch │ │ ├── Foo-watchOS-dummy.m │ │ ├── Foo-watchOS-prefix.pch │ │ ├── Foo-watchOS.debug.xcconfig │ │ ├── Foo-watchOS.release.xcconfig │ │ ├── Foo-watchOS.unit-tests.debug.xcconfig │ │ └── Foo-watchOS.unit-tests.release.xcconfig │ │ ├── Pods-App-iOS │ │ ├── Pods-App-iOS-acknowledgements.markdown │ │ ├── Pods-App-iOS-acknowledgements.plist │ │ ├── Pods-App-iOS-dummy.m │ │ ├── Pods-App-iOS.debug.xcconfig │ │ └── Pods-App-iOS.release.xcconfig │ │ ├── Pods-App-macOS │ │ ├── Pods-App-macOS-acknowledgements.markdown │ │ ├── Pods-App-macOS-acknowledgements.plist │ │ ├── Pods-App-macOS-dummy.m │ │ ├── Pods-App-macOS.debug.xcconfig │ │ └── Pods-App-macOS.release.xcconfig │ │ ├── Pods-App-tvOS │ │ ├── Pods-App-tvOS-acknowledgements.markdown │ │ ├── Pods-App-tvOS-acknowledgements.plist │ │ ├── Pods-App-tvOS-dummy.m │ │ ├── Pods-App-tvOS.debug.xcconfig │ │ └── Pods-App-tvOS.release.xcconfig │ │ └── Pods-App-watchOS │ │ ├── Pods-App-watchOS-acknowledgements.markdown │ │ ├── Pods-App-watchOS-acknowledgements.plist │ │ ├── Pods-App-watchOS-dummy.m │ │ ├── Pods-App-watchOS.debug.xcconfig │ │ └── Pods-App-watchOS.release.xcconfig │ ├── before │ ├── .gen_config.yml │ ├── Foo.podspec │ ├── Sources │ │ └── Foo.m │ └── Tests │ │ └── FooTests.m │ └── spec.yml ├── spec_helper.rb └── spec_helper └── prepare_spec_repos.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/Specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/.github/workflows/Specs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.2.5 2 | -------------------------------------------------------------------------------- /bin/bacon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/bacon -------------------------------------------------------------------------------- /bin/cocoapods-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/cocoapods-gen -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/console -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/bin/setup -------------------------------------------------------------------------------- /cocoapods-generate.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/cocoapods-generate.gemspec -------------------------------------------------------------------------------- /lib/cocoapods/command/gen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/lib/cocoapods/command/gen.rb -------------------------------------------------------------------------------- /lib/cocoapods/generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/lib/cocoapods/generate.rb -------------------------------------------------------------------------------- /lib/cocoapods/generate/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/lib/cocoapods/generate/configuration.rb -------------------------------------------------------------------------------- /lib/cocoapods/generate/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/lib/cocoapods/generate/installer.rb -------------------------------------------------------------------------------- /lib/cocoapods/generate/podfile_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/lib/cocoapods/generate/podfile_generator.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/cocoapods/command/gen_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/command/gen_spec.rb -------------------------------------------------------------------------------- /spec/cocoapods/generate/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/generate/configuration_spec.rb -------------------------------------------------------------------------------- /spec/cocoapods/generate/installer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/generate/installer_spec.rb -------------------------------------------------------------------------------- /spec/cocoapods/generate/podfile_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/generate/podfile_generator_spec.rb -------------------------------------------------------------------------------- /spec/cocoapods/sample_app_host/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/sample_app_host/AppDelegate.swift -------------------------------------------------------------------------------- /spec/cocoapods/sample_podspecs/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/sample_podspecs/A.podspec -------------------------------------------------------------------------------- /spec/cocoapods/sample_podspecs/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/sample_podspecs/B.podspec -------------------------------------------------------------------------------- /spec/cocoapods/sample_podspecs/gen/D/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/sample_podspecs/gen/D/D.podspec -------------------------------------------------------------------------------- /spec/cocoapods/sample_podspecs/nested/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/cocoapods/sample_podspecs/nested/C.podspec -------------------------------------------------------------------------------- /spec/integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration.rb -------------------------------------------------------------------------------- /spec/integration/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | *.xcuserdatad -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/.gen_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/.gen_config.yml -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/AppHost/Subdir/other.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/AppHost/Subdir/other.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/AppHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/AppHost/main.m -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/gen/Foo/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/gen/Foo/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Foo.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/gen/Foo/Foo.xcodeproj -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/gen/Foo/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/gen/Foo/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/after/gen/Foo/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Foo-iOS/Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Foo-macOS/Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Foo-tvOS/Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Foo-watchOS/Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/gen/Foo/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/.gen_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/before/.gen_config.yml -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/AppHost/Subdir/other.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/AppHost/Subdir/other.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/AppHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/before/AppHost/main.m -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/before/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/before/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/before/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/app_host_source_dir/spec.yml -------------------------------------------------------------------------------- /spec/integration/fork/after/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/fork/after/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/Podfile -------------------------------------------------------------------------------- /spec/integration/fork/after/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/fork/after/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/fork/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Foo.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/Foo.xcodeproj -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Local Podspecs/Foo.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/Pods/Local Podspecs/Foo.podspec.json -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/after/gen/Foo/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-iOS/Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-macOS/Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-tvOS/Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-watchOS/Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/fork/before/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/before/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/fork/before/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/before/Podfile -------------------------------------------------------------------------------- /spec/integration/fork/before/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/before/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/fork/before/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/before/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/fork/before/gen/Foo/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/fork/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/fork/spec.yml -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/.gen_config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | local_sources: . 3 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local-version-of-published-podspec/after/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Foo/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Foo/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Foo/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Foo/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import Forkable; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import Forkable; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import Forkable; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import Forkable; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/before/.gen_config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | local_sources: . 3 | -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/before/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local-version-of-published-podspec/before/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local-version-of-published-podspec/spec.yml -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/Podfile -------------------------------------------------------------------------------- /spec/integration/local_sources/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/E.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/E.xcodeproj -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/App/E-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/Pods/App/E-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/App/E-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/Pods/App/E-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/after/gen/E/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Podfile -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/A/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/A/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/B/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/B/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/C/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/C/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/E/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Private/E/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/A/A-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/A/A-umbrella.h -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/A/A.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/A/A.modulemap -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/A/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/B/B-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/B/B-umbrella.h -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/B/B.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/B/B.modulemap -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/B/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/C/C-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/C/C-umbrella.h -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/C/C.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/C/C.modulemap -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/C/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/E/E-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/E/E-umbrella.h -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/E/E.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Headers/Public/E/E.modulemap -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/E/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Local Podspecs/C.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Local Podspecs/C.podspec.json -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Local Podspecs/E.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Local Podspecs/E.podspec.json -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/before/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /spec/integration/local_sources/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/local_sources/spec.yml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/App/d_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/d/D.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Sources/Internal/d_Internal.h: -------------------------------------------------------------------------------- 1 | // d Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Sources/d.h: -------------------------------------------------------------------------------- 1 | // d Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Sources/d.m: -------------------------------------------------------------------------------- 1 | // d Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Sources/d.swift: -------------------------------------------------------------------------------- 1 | // d Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Tests/dTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/App/f_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/F.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/f/F.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Sources/Internal/f_Internal.h: -------------------------------------------------------------------------------- 1 | // f Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Sources/f.h: -------------------------------------------------------------------------------- 1 | // f Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Sources/f.m: -------------------------------------------------------------------------------- 1 | // f Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Sources/f.swift: -------------------------------------------------------------------------------- 1 | // f Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Tests/fTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/App/g_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/G.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Frameworks/g/G.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Sources/Internal/g_Internal.h: -------------------------------------------------------------------------------- 1 | // g Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Sources/g.h: -------------------------------------------------------------------------------- 1 | // g Header -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Sources/g.m: -------------------------------------------------------------------------------- 1 | // g Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Sources/g.swift: -------------------------------------------------------------------------------- 1 | // g Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Tests/gTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Podfile -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/A.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/A.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/App/A-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/App/A-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/App/A-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/App/A-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/App/A-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/App/A-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/App/A-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/App/A-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/A/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-iOS/A-iOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-iOS/A-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-macOS/A-macOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-macOS/A-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-tvOS/A-tvOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-tvOS/A-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-watchOS/A-watchOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-watchOS/A-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import B; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import B; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import B; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import B; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/B.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/B.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/App/B-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/App/B-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/App/B-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/App/B-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/App/B-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/App/B-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/App/B-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/App/B-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/B/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import C; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import C; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import C; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import C; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/C.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/C.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/App/C-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/App/C-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/App/C-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/App/C-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/App/C-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/App/C-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/App/C-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/App/C-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Local Podspecs/C.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/Local Podspecs/C.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/C/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import D; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import D; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import D; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import D; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/D.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/D.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/App/D-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/App/D-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/App/D-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/App/D-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/App/D-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/App/D-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/App/D-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/App/D-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/C.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/C.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/D.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/D.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/E.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Local Podspecs/E.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/D/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import E; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/E.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/E.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/App/E-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/App/E-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/App/E-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/App/E-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/App/E-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/App/E-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/App/E-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/App/E-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/C.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/C.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/E.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/Local Podspecs/E.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/E/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import F; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import F; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import F; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import F; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/F.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/F.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/App/F-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/App/F-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/App/F-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/App/F-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/App/F-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/App/F-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/App/F-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/App/F-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/C.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/C.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/F.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/Local Podspecs/F.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/F/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/App-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/App-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import G; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import G; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import G; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import G; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/G.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/G.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/App/G-iOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/App/G-iOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/App/G-macOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/App/G-macOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/App/G-tvOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/App/G-tvOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/App/G-watchOS-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/App/G-watchOS-App-Info.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Local Podspecs/G.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/Local Podspecs/G.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/after/gen/G/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-iOS/G-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-macOS/G-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-tvOS/G-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-watchOS/G-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/App/d_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/d/D.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/Internal/d_Internal.h: -------------------------------------------------------------------------------- 1 | // d Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/d.h: -------------------------------------------------------------------------------- 1 | // d Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/d.m: -------------------------------------------------------------------------------- 1 | // d Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/d.swift: -------------------------------------------------------------------------------- 1 | // d Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Tests/dTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/App/f_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/F.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/f/F.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/Internal/f_Internal.h: -------------------------------------------------------------------------------- 1 | // f Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/f.h: -------------------------------------------------------------------------------- 1 | // f Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/f.m: -------------------------------------------------------------------------------- 1 | // f Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/f.swift: -------------------------------------------------------------------------------- 1 | // f Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Tests/fTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/App/g_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/G.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Frameworks/g/G.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/Internal/g_Internal.h: -------------------------------------------------------------------------------- 1 | // g Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/g.h: -------------------------------------------------------------------------------- 1 | // g Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/g.m: -------------------------------------------------------------------------------- 1 | // g Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/g.swift: -------------------------------------------------------------------------------- 1 | // g Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Tests/gTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Podfile -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/A/a.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/a/Sources/a.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/A/a_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/a/Sources/Internal/a_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/B/b.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/b/Sources/b.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/B/b_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/b/Sources/Internal/b_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/C/c.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/c/Sources/c.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/C/c_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/c/Sources/Internal/c_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/D/d.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/d/Sources/d.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/D/d_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/d/Sources/Internal/d_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/E/e.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/e/Sources/e.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/E/e_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/e/Sources/Internal/e_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/F/f.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/f/Sources/f.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/F/f_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/f/Sources/Internal/f_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/G/g.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/g.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Private/G/g_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/Internal/g_Internal.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/A/A-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/A/A-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/A/A.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/A/A.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/A/a.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/a/Sources/a.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/B/B-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/B/B-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/B/B.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/B/B.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/B/b.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/b/Sources/b.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/C/C-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/C/C-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/C/C.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/C/C.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/C/c.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/c/Sources/c.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/D/D-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/D/D-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/D/D.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/D/D.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/D/d.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/d/Sources/d.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/E/E-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/E/E-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/E/E.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/E/E.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/E/e.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/e/Sources/e.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/F/F-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/F/F-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/F/F.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/F/F.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/F/f.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/f/Sources/f.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/G/G-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/G/G-umbrella.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/G/G.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Headers/Public/G/G.modulemap -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/G/g.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/g.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/A.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/A.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/B.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/B.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/C.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/C.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/D.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/D.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/E.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/E.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/F.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/F.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Local Podspecs/G.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Local Podspecs/G.podspec.json -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/A/A-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/A/A-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/A/A-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/A/A-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/A/A.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/A/A.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/B/B-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/B/B-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/B/B-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/B/B-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/B/B.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/B/B.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/C/C-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/C/C-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/C/C-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/C/C-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/C/C.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/C/C.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/D/D-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/D/D-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/D/D-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/D/D-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/D/D.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/D/D.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/E/E-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/E/E-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/E/E-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/E/E-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/E/E.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/E/E.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/F/F-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/F/F-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/F/F-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/F/F-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/F/F.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/F/F.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/G/G-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/G/G-dummy.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/G/G-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/G/G-prefix.pch -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/G/G.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/before/Pods/Target Support Files/G/G.xcconfig -------------------------------------------------------------------------------- /spec/integration/monorepo/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/monorepo/spec.yml -------------------------------------------------------------------------------- /spec/integration/pod.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/pod.tar -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/gen/Foo/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import Foo; 2 | int main(void) { return 0; } 3 | -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/gen/Foo/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Foo.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/gen/Foo/Foo.xcodeproj -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/gen/Foo/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/gen/Foo/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/after/gen/Foo/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Foo-iOS/Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Foo-macOS/Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Foo-tvOS/Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Foo-watchOS/Foo-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/gen/Foo/Pods/Target Support Files/Pods-App-watchOS/Pods-App-watchOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/single_podspec/before/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/before/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/single_podspec/before/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/before/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/single_podspec/before/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/before/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/single_podspec/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_podspec/spec.yml -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/App/d_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/d/D.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/Sources/Internal/d_Internal.h: -------------------------------------------------------------------------------- 1 | // d Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/Sources/d.h: -------------------------------------------------------------------------------- 1 | // d Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/Sources/d.m: -------------------------------------------------------------------------------- 1 | // d Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/Sources/d.swift: -------------------------------------------------------------------------------- 1 | // d Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/Tests/dTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/App/f_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/F.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/f/F.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/Sources/Internal/f_Internal.h: -------------------------------------------------------------------------------- 1 | // f Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/Sources/f.h: -------------------------------------------------------------------------------- 1 | // f Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/Sources/f.m: -------------------------------------------------------------------------------- 1 | // f Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/Sources/f.swift: -------------------------------------------------------------------------------- 1 | // f Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/Tests/fTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/App/g_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/G.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Frameworks/g/G.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/Sources/Internal/g_Internal.h: -------------------------------------------------------------------------------- 1 | // g Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/Sources/g.h: -------------------------------------------------------------------------------- 1 | // g Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/Sources/g.m: -------------------------------------------------------------------------------- 1 | // g Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/Sources/g.swift: -------------------------------------------------------------------------------- 1 | // g Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/Tests/gTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Podfile -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/App-iOS/main.m -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/App-macOS/main.m -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-tvOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/App-tvOS/main.m -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-watchOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/App-watchOS/main.m -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-iOS/A-iOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-iOS/A-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-macOS/A-macOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-macOS/A-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-tvOS/A-tvOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-tvOS/A-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-watchOS/A-watchOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/A-watchOS/A-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/G-iOS/G-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/G-macOS/G-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/G-tvOS/G-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/G-watchOS/G-watchOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/G.framework -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Workspace.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/after/gen/Workspace/Workspace.xcodeproj -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/App/d_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/d/D.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/Sources/Internal/d_Internal.h: -------------------------------------------------------------------------------- 1 | // d Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/Sources/d.h: -------------------------------------------------------------------------------- 1 | // d Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/Sources/d.m: -------------------------------------------------------------------------------- 1 | // d Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/Sources/d.swift: -------------------------------------------------------------------------------- 1 | // d Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/Tests/dTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/App/f_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/F.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/f/F.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/Sources/Internal/f_Internal.h: -------------------------------------------------------------------------------- 1 | // f Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/Sources/f.h: -------------------------------------------------------------------------------- 1 | // f Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/Sources/f.m: -------------------------------------------------------------------------------- 1 | // f Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/Sources/f.swift: -------------------------------------------------------------------------------- 1 | // f Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/Tests/fTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/App/g_main.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/G.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Frameworks/g/G.podspec -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/Sources/Internal/g_Internal.h: -------------------------------------------------------------------------------- 1 | // g Internal header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/Sources/g.h: -------------------------------------------------------------------------------- 1 | // g Header -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/Sources/g.m: -------------------------------------------------------------------------------- 1 | // g Implementation -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/Sources/g.swift: -------------------------------------------------------------------------------- 1 | // g Swift -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/Tests/gTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Podfile -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/A/a.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/a/Sources/a.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/A/a_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/a/Sources/Internal/a_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/B/b.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/b/Sources/b.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/B/b_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/b/Sources/Internal/b_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/C/c.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/c/Sources/c.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/C/c_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/c/Sources/Internal/c_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/D/d.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/d/Sources/d.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/D/d_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/d/Sources/Internal/d_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/E/e.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/e/Sources/e.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/E/e_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/e/Sources/Internal/e_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/F/f.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/f/Sources/f.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/F/f_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/f/Sources/Internal/f_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/G/g.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/g.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Private/G/g_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/Internal/g_Internal.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/A/a.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/a/Sources/a.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/B/b.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/b/Sources/b.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/C/c.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/c/Sources/c.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/D/d.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/d/Sources/d.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/E/e.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/e/Sources/e.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/F/f.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/f/Sources/f.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/G/g.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/g.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/before/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/single_workspace/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/single_workspace/spec.yml -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/Forkable/1.0.0/Forkable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/specs-repos/master/Forkable/1.0.0/Forkable.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/OnlyPre/1.0.0.pre.1/OnlyPre.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/specs-repos/master/OnlyPre/1.0.0.pre.1/OnlyPre.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/Public/3.0.0/Public.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/specs-repos/master/Public/3.0.0/Public.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/url: -------------------------------------------------------------------------------- 1 | https://github.com/CocoaPods/Specs.git 2 | -------------------------------------------------------------------------------- /spec/integration/specs-repos/private/url: -------------------------------------------------------------------------------- 1 | https://github.com/Private/SpecsForks.git 2 | -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/.url: -------------------------------------------------------------------------------- 1 | https://cdn.cocoapods.org/ -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/CocoaPods-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/specs-repos/trunk/CocoaPods-version.yml -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/CocoaPods-version.yml.etag: -------------------------------------------------------------------------------- 1 | "a6937c11ec2312150ec6c29e76778beb-ssl" -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt.etag: -------------------------------------------------------------------------------- 1 | "8021f60452b7b4d99bdb4d280f6eb6f1-ssl" -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/.gen_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/.gen_config.yml -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/AppHost/App-Host-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/AppHost/Subdir/other.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/AppHost/Subdir/other.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/AppHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/AppHost/main.m -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/gen/Foo/Foo.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/gen/Foo/Foo.xcodeproj -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/gen/Foo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/after/gen/Foo/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/gen/Foo/Pods/Target Support Files/Foo-iOS/Foo-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/gen/Foo/Pods/Target Support Files/Foo-macOS/Foo-macOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/gen/Foo/Pods/Target Support Files/Foo-tvOS/Foo-tvOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Foo.framework -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/.gen_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/before/.gen_config.yml -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/AppHost/App-Host-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/AppHost/Subdir/other.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/AppHost/Subdir/other.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/AppHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/before/AppHost/main.m -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/before/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/before/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/before/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/swift-objc-bridging-header/spec.yml -------------------------------------------------------------------------------- /spec/integration/use_libraries/.gen_config.yml: -------------------------------------------------------------------------------- 1 | use_libraries: true 2 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/.gen_config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | use_libraries: true 3 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/execution_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/execution_output.txt -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/App-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/gen/Foo/App-iOS/Info.plist -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | int main(void) { return 0; } 2 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/CocoaPods.podfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/gen/Foo/CocoaPods.podfile.yaml -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/Foo.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/gen/Foo/Foo.xcodeproj -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/gen/Foo/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/gen/Foo/Pods/Manifest.lock -------------------------------------------------------------------------------- /spec/integration/use_libraries/after/gen/Foo/Pods/Pods.xcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/after/gen/Foo/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /spec/integration/use_libraries/before/.gen_config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | use_libraries: true 3 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/before/Foo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/before/Foo.podspec -------------------------------------------------------------------------------- /spec/integration/use_libraries/before/Sources/Foo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/before/Sources/Foo.m -------------------------------------------------------------------------------- /spec/integration/use_libraries/before/Tests/FooTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/before/Tests/FooTests.m -------------------------------------------------------------------------------- /spec/integration/use_libraries/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/integration/use_libraries/spec.yml -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper/prepare_spec_repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/HEAD/spec/spec_helper/prepare_spec_repos.rb --------------------------------------------------------------------------------