├── .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 /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /.yardoc 3 | /_yardoc/ 4 | /coverage/ 5 | /doc/ 6 | /pkg/ 7 | /spec/reports/ 8 | /tmp/ 9 | /Pods/ 10 | 11 | # rspec failure tracking 12 | .rspec_status 13 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.2.5 2 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | IFS=$'\n\t' 4 | set -vx 5 | 6 | bundle install 7 | 8 | # Do any other automated setup that you need to do here 9 | -------------------------------------------------------------------------------- /spec/cocoapods/sample_app_host/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import MarketLogging 2 | 3 | @UIApplicationMain 4 | class AppDelegate: UIApplicationDelegate { 5 | init() { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /spec/integration/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | *.xcuserdatad -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/AppHost/Subdir/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/app_host_source_dir/after/AppHost/Subdir/other.h -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/AppHost/main.m: -------------------------------------------------------------------------------- 1 | // main.m 2 | 3 | @import Foundation; 4 | 5 | int main(int argc, char **argv) { 6 | NSLog(@"main!"); 7 | } 8 | -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/after/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /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-iOS/Foo-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-macOS/Foo-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-tvOS/Foo-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/AppHost/Subdir/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/app_host_source_dir/before/AppHost/Subdir/other.h -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/AppHost/main.m: -------------------------------------------------------------------------------- 1 | // main.m 2 | 3 | @import Foundation; 4 | 5 | int main(int argc, char **argv) { 6 | NSLog(@"main!"); 7 | } 8 | -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/before/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/app_host_source_dir/spec.yml: -------------------------------------------------------------------------------- 1 | description: uses a custom app host source directory when given 2 | -------------------------------------------------------------------------------- /spec/integration/fork/after/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /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/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-iOS/Foo-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Foo_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_Foo_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-iOS/Foo-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-macOS/Foo-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Foo_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_Foo_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-macOS/Foo-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-tvOS/Foo-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Foo_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_Foo_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/fork/after/gen/Foo/Pods/Target Support Files/Foo-tvOS/Foo-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Foo-watchOS/Foo-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/fork/before/gen/Foo/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/fork/before/gen/Foo/file.txt -------------------------------------------------------------------------------- /spec/integration/fork/spec.yml: -------------------------------------------------------------------------------- 1 | description: uses a fork from a private spec repo 2 | args: --clean 3 | -------------------------------------------------------------------------------- /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/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/Forkable/Sources/Forkable.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Forkable 5 | + (void)load { NSLog(@" Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /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/Foo/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-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}/Forkable.framework -------------------------------------------------------------------------------- /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/after/gen/Forkable/Pods/Target Support Files/Forkable-iOS/Forkable-iOS-Unit-Tests-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/Pods/Target Support Files/Pods-App-iOS/Pods-App-iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/Pods/Target Support Files/Pods-App-macOS/Pods-App-macOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/after/gen/Forkable/Pods/Target Support Files/Pods-App-tvOS/Pods-App-tvOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Forkable.framework -------------------------------------------------------------------------------- /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/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/before/Forkable/Sources/Forkable.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Forkable 5 | + (void)load { NSLog(@" Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/local-version-of-published-podspec/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates a workspace for a single podspec 2 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/a/App/a_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/a/Tests/aTests.m -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/b/App/b_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/b/Tests/bTests.m -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/c/App/c_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/c/Tests/cTests.m -------------------------------------------------------------------------------- /spec/integration/local_sources/after/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/e/App/e_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/after/Frameworks/e/Tests/eTests.m -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-iOS/B-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-macOS/B-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-tvOS/B-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/B-watchOS/B-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-iOS/C-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-iOS/C-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-macOS/C-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-macOS/C-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-tvOS/C-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-tvOS/C-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/C-watchOS/C-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-iOS/E-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-iOS/E-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-macOS/E-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-macOS/E-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-tvOS/E-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-tvOS/E-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/after/gen/E/Pods/Target Support Files/E-watchOS/E-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/a/App/a_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/a/Tests/aTests.m -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/b/App/b_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/b/Tests/bTests.m -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/c/App/c_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/c/Tests/cTests.m -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/e/App/e_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/local_sources/before/Frameworks/e/Tests/eTests.m -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module A [system] { 2 | umbrella header "A-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/A/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/B/B.modulemap: -------------------------------------------------------------------------------- 1 | module B [system] { 2 | umbrella header "B-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/B/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/C/C.modulemap: -------------------------------------------------------------------------------- 1 | module C [system] { 2 | umbrella header "C-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/C/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/E/E.modulemap: -------------------------------------------------------------------------------- 1 | module E [system] { 2 | umbrella header "E-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Headers/Public/E/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Target Support Files/A/A-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A : NSObject 3 | @end 4 | @implementation PodsDummy_A 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Target Support Files/B/B-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B : NSObject 3 | @end 4 | @implementation PodsDummy_B 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Target Support Files/C/C-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C : NSObject 3 | @end 4 | @implementation PodsDummy_C 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Target Support Files/E/E-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E : NSObject 3 | @end 4 | @implementation PodsDummy_E 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Target Support Files/Pods-App/Pods-App-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_App : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_App 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/local_sources/before/Pods/Target Support Files/Pods-App/Pods-App.modulemap: -------------------------------------------------------------------------------- 1 | module Pods_App [system] { 2 | umbrella header "Pods-App-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/local_sources/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates a workspace for a pod with local podspec dependencies 2 | args: 'Frameworks/e/E.podspec --local-sources="Frameworks/a,Frameworks/b,Frameworks/c"' 3 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/App/a_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/a/App/a_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/a/Tests/aTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/a/Tests/a_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/b/App/b_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/b/Tests/bTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/b/Tests/b_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/c/App/c_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/c/Tests/cTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/c/Tests/c_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/App/d_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/d/App/d_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/d/Tests/dTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/d/Tests/d_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/e/App/e_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/e/Tests/eTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/e/Tests/e_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/App/f_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/f/App/f_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/f/Tests/fTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/f/Tests/f_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/App/g_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/g/App/g_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/g/Tests/gTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/after/Frameworks/g/Tests/g_tests.swift -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-App-frameworks-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/A-iOS/A-iOS-App-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/A-iOS/A.framework -------------------------------------------------------------------------------- /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-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-macOS/A-macOS-App-frameworks-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/A-macOS/A-macOS-App-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/A-macOS/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-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-tvOS/A-tvOS-App-frameworks-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/A-tvOS/A-tvOS-App-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/A-tvOS/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-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/A-watchOS/A-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/A/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-watchOS/A-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-iOS/B-iOS-App-frameworks-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/B.framework 2 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/A.framework -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-iOS/B-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-macOS/B-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-tvOS/B-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-watchOS/B-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/B/Pods/Target Support Files/B-watchOS/B-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-watchOS/A-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-iOS/B-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-macOS/B-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-tvOS/B-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-watchOS/B-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/B-watchOS/B-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-iOS/C-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-iOS/C-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-macOS/C-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-macOS/C-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-tvOS/C-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-tvOS/C-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-watchOS/C-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/C/Pods/Target Support Files/C-watchOS/C-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-watchOS/A-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-iOS/B-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-macOS/B-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-tvOS/B-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-watchOS/B-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/B-watchOS/B-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-iOS/C-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-iOS/C-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-macOS/C-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-macOS/C-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-tvOS/C-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-tvOS/C-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-watchOS/C-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/C-watchOS/C-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-iOS/D-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_D_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_D_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-iOS/D-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-macOS/D-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_D_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_D_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-macOS/D-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-tvOS/D-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_D_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_D_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-tvOS/D-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-watchOS/D-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_D_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_D_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/D-watchOS/D-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-iOS/E-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-iOS/E-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-macOS/E-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-macOS/E-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-tvOS/E-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-tvOS/E-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-watchOS/E-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/D/Pods/Target Support Files/E-watchOS/E-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-watchOS/A-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-iOS/B-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-macOS/B-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-tvOS/B-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-watchOS/B-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/B-watchOS/B-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-iOS/C-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-iOS/C-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-macOS/C-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-macOS/C-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-tvOS/C-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-tvOS/C-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-watchOS/C-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/C-watchOS/C-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-iOS/E-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-iOS/E-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-macOS/E-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-macOS/E-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-tvOS/E-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-tvOS/E-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-watchOS/E-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_E_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/E/Pods/Target Support Files/E-watchOS/E-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-watchOS/A-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-iOS/B-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-macOS/B-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-tvOS/B-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-watchOS/B-watchOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B_watchOS : NSObject 3 | @end 4 | @implementation PodsDummy_B_watchOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/B-watchOS/B-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-iOS/C-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-iOS/C-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-macOS/C-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-macOS/C-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-tvOS/C-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_C_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-tvOS/C-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/C-watchOS/C-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-iOS/F-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_F_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_F_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-iOS/F-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-macOS/F-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_F_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_F_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-macOS/F-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-tvOS/F-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_F_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_F_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-tvOS/F-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/F/Pods/Target Support Files/F-watchOS/F-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/A-iOS/A-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/A-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/A-macOS/A-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/A-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/A-tvOS/A-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_A_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/A-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/A-watchOS/A-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-iOS/G-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_G_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_G_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-iOS/G-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-macOS/G-macOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_G_macOS : NSObject 3 | @end 4 | @implementation PodsDummy_G_macOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-macOS/G-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-tvOS/G-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_G_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_G_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/gen/G/Pods/Target Support Files/G-tvOS/G-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/G-watchOS/G-watchOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-watchOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/App/a_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/a/App/a_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/a/Tests/aTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/a/Tests/a_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/App/b_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/b/App/b_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/b/Tests/bTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/b/Tests/b_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/App/c_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/c/App/c_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/c/Tests/cTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/c/Tests/c_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/App/d_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/d/App/d_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/d/Tests/dTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/d/Tests/d_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/App/e_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/e/App/e_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/e/Tests/eTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/e/Tests/e_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/App/f_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/f/App/f_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/f/Tests/fTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/f/Tests/f_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/App/g_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/g/App/g_main.swift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/g/Tests/gTests.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/cocoapods-generate/0d73f2493f658cd12bca769f30b7387ed064f405/spec/integration/monorepo/before/Frameworks/g/Tests/g_tests.swift -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module A [system] { 2 | umbrella header "A-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module B [system] { 2 | umbrella header "B-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module C [system] { 2 | umbrella header "C-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module D [system] { 2 | umbrella header "D-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module E [system] { 2 | umbrella header "E-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module F [system] { 2 | umbrella header "F-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module G [system] { 2 | umbrella header "G-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Headers/Public/G/g.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/g.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/A/A-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A : NSObject 3 | @end 4 | @implementation PodsDummy_A 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/B/B-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B : NSObject 3 | @end 4 | @implementation PodsDummy_B 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/C/C-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C : NSObject 3 | @end 4 | @implementation PodsDummy_C 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/D/D-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_D : NSObject 3 | @end 4 | @implementation PodsDummy_D 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/E/E-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E : NSObject 3 | @end 4 | @implementation PodsDummy_E 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/F/F-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_F : NSObject 3 | @end 4 | @implementation PodsDummy_F 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/G/G-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_G : NSObject 3 | @end 4 | @implementation PodsDummy_G 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/Pods-App/Pods-App-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_App : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_App 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Pods/Target Support Files/Pods-App/Pods-App.modulemap: -------------------------------------------------------------------------------- 1 | module Pods_App [system] { 2 | umbrella header "Pods-App-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/monorepo/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates a workspace for pods in a monorepo 2 | args: 'Frameworks/*/*.podspec' 3 | -------------------------------------------------------------------------------- /spec/integration/single_podspec/after/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /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/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-iOS/Foo-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-macOS/Foo-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-tvOS/Foo-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Foo { 2 | umbrella header "Foo-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/single_podspec/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates a workspace for a single podspec 2 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/gen/Workspace/App-iOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | @import B; 3 | @import C; 4 | @import D; 5 | @import E; 6 | @import F; 7 | @import G; 8 | int main(void) { return 0; } 9 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-macOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | @import B; 3 | @import C; 4 | @import D; 5 | @import E; 6 | @import F; 7 | @import G; 8 | int main(void) { return 0; } 9 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-tvOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | @import B; 3 | @import C; 4 | @import D; 5 | @import E; 6 | @import F; 7 | @import G; 8 | int main(void) { return 0; } 9 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/App-watchOS/main.m: -------------------------------------------------------------------------------- 1 | @import A; 2 | @import B; 3 | @import C; 4 | @import D; 5 | @import E; 6 | @import F; 7 | @import G; 8 | int main(void) { return 0; } 9 | -------------------------------------------------------------------------------- /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-iOS/A-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-macOS/A-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-tvOS/A-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module A { 2 | umbrella header "A-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/B-iOS/B-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/B-macOS/B-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/B-tvOS/B-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module B { 2 | umbrella header "B-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/C-iOS/C-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/C-macOS/C-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/C-tvOS/C-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module C { 2 | umbrella header "C-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/D-iOS/D-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/D-macOS/D-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/D-tvOS/D-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module D { 2 | umbrella header "D-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/E-iOS/E-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/E-macOS/E-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/E-tvOS/E-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module E { 2 | umbrella header "E-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/F-iOS/F-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/F-macOS/F-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/after/gen/Workspace/Pods/Target Support Files/F-tvOS/F-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module F { 2 | umbrella header "F-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-iOS/G-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-macOS/G-macOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-macOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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-tvOS/G-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module G { 2 | umbrella header "G-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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.modulemap: -------------------------------------------------------------------------------- 1 | module A [system] { 2 | umbrella header "A-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module B [system] { 2 | umbrella header "B-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module C [system] { 2 | umbrella header "C-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module D [system] { 2 | umbrella header "D-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module E [system] { 2 | umbrella header "E-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module F [system] { 2 | umbrella header "F-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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.modulemap: -------------------------------------------------------------------------------- 1 | module G [system] { 2 | umbrella header "G-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Headers/Public/G/g.h: -------------------------------------------------------------------------------- 1 | ../../../../Frameworks/g/Sources/g.h -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/A/A-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_A : NSObject 3 | @end 4 | @implementation PodsDummy_A 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/B/B-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_B : NSObject 3 | @end 4 | @implementation PodsDummy_B 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/C/C-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_C : NSObject 3 | @end 4 | @implementation PodsDummy_C 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/D/D-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_D : NSObject 3 | @end 4 | @implementation PodsDummy_D 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/E/E-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_E : NSObject 3 | @end 4 | @implementation PodsDummy_E 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/F/F-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_F : NSObject 3 | @end 4 | @implementation PodsDummy_F 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/G/G-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_G : NSObject 3 | @end 4 | @implementation PodsDummy_G 5 | @end 6 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/before/Pods/Target Support Files/Pods-App/Pods-App.modulemap: -------------------------------------------------------------------------------- 1 | module Pods_App [system] { 2 | umbrella header "Pods-App-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /spec/integration/single_workspace/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates a single workspace for all pods 2 | args: 'Frameworks/*/*.podspec --single-workspace' 3 | 4 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | --- 2 | min: 1.0.0 3 | last: 1.8.0.beta.2 4 | prefix_lengths: 5 | - 1 6 | - 1 7 | - 1 8 | -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/CocoaPods-version.yml.etag: -------------------------------------------------------------------------------- 1 | "a6937c11ec2312150ec6c29e76778beb-ssl" -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt.etag: -------------------------------------------------------------------------------- 1 | "8021f60452b7b4d99bdb4d280f6eb6f1-ssl" -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/AppHost/main.m: -------------------------------------------------------------------------------- 1 | // main.m 2 | 3 | @import Foundation; 4 | 5 | int main(int argc, char **argv) { 6 | NSLog(@"main!"); 7 | } 8 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/after/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /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/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/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/swift-objc-bridging-header/before/AppHost/main.m: -------------------------------------------------------------------------------- 1 | // main.m 2 | 3 | @import Foundation; 4 | 5 | int main(int argc, char **argv) { 6 | NSLog(@"main!"); 7 | } 8 | -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/before/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/swift-objc-bridging-header/spec.yml: -------------------------------------------------------------------------------- 1 | description: uses a custom swift objc bridging header when a -Bridging-Header.h file is in the app host source dir 2 | -------------------------------------------------------------------------------- /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/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /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/before/.gen_config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | use_libraries: true 3 | -------------------------------------------------------------------------------- /spec/integration/use_libraries/before/Sources/Foo.m: -------------------------------------------------------------------------------- 1 | @interface Foo: NSObject 2 | @end 3 | 4 | @implementation Foo 5 | + (void)load { NSLog(@"Loaded %@", self); } 6 | @end -------------------------------------------------------------------------------- /spec/integration/use_libraries/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates a workspace with static libraries 2 | --------------------------------------------------------------------------------