├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console ├── pod ├── pod_install_bazel_build ├── rake └── setup ├── cocoapods-bazel.gemspec ├── lib ├── cocoapods │ ├── bazel.rb │ └── bazel │ │ ├── config.rb │ │ ├── target.rb │ │ ├── util.rb │ │ ├── version.rb │ │ └── xcconfig_resolver.rb └── cocoapods_plugin.rb └── spec ├── cocoapods └── bazel │ ├── util_spec.rb │ └── xcconfig_resolver_spec.rb ├── integration.rb ├── integration ├── .gitignore ├── OneTrust-CMP-XCFramework-6.13.0.zip ├── experimental_features │ ├── after │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── Frameworks │ │ │ ├── CustomHeaderSearchPaths │ │ │ │ └── BUILD.bazel │ │ │ ├── EsotericGlobs │ │ │ │ └── BUILD.bazel │ │ │ ├── SelectPerConfigWithSharedDeps │ │ │ │ └── BUILD.bazel │ │ │ ├── SelectPerConfigWithoutSharedDeps │ │ │ │ └── BUILD.bazel │ │ │ ├── SwiftBridgingHeader │ │ │ │ └── BUILD.bazel │ │ │ ├── a │ │ │ │ └── BUILD.bazel │ │ │ ├── b │ │ │ │ └── BUILD.bazel │ │ │ ├── c │ │ │ │ └── BUILD.bazel │ │ │ ├── d │ │ │ │ └── BUILD.bazel │ │ │ ├── e │ │ │ │ └── BUILD.bazel │ │ │ ├── f │ │ │ │ └── BUILD.bazel │ │ │ └── g │ │ │ │ └── BUILD.bazel │ │ ├── Pods │ │ │ ├── BUILD.bazel │ │ │ ├── OneTrust-CMP-XCFramework │ │ │ │ └── BUILD.bazel │ │ │ ├── OnlyPre │ │ │ │ └── BUILD.bazel │ │ │ ├── Public │ │ │ │ └── BUILD.bazel │ │ │ └── cocoapods-bazel │ │ │ │ └── BUILD.bazel │ │ └── WORKSPACE │ ├── before │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── Frameworks │ │ │ ├── CustomHeaderSearchPaths │ │ │ │ ├── CustomHeaderSearchPaths.podspec │ │ │ │ └── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ └── InternalHeader.h │ │ │ │ │ ├── PublicClass.m │ │ │ │ │ └── PublicHeader.h │ │ │ ├── EsotericGlobs │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── EsotericGlobs.podspec │ │ │ │ └── Sources │ │ │ │ │ ├── EGClass.m │ │ │ │ │ ├── EGFunctions.m │ │ │ │ │ ├── EGInternal.h │ │ │ │ │ ├── Private │ │ │ │ │ ├── EGPrivate.h │ │ │ │ │ └── EGPrivate.m │ │ │ │ │ └── Public │ │ │ │ │ ├── EGClass.h │ │ │ │ │ └── EGFunctions.h │ │ │ ├── SelectPerConfigWithSharedDeps │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── SelectPerConfigWithSharedDeps.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── with_shared_deps_Internal.h │ │ │ │ │ ├── with_shared_deps.h │ │ │ │ │ ├── with_shared_deps.m │ │ │ │ │ └── with_shared_deps.swift │ │ │ │ └── Tests │ │ │ │ │ ├── withSharedDepsTests.m │ │ │ │ │ └── with_shared_deps_tests.swift │ │ │ ├── SelectPerConfigWithoutSharedDeps │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── SelectPerConfigWithoutSharedDeps.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── without_shared_deps_Internal.h │ │ │ │ │ ├── without_shared_deps.h │ │ │ │ │ ├── without_shared_deps.m │ │ │ │ │ └── without_shared_deps.swift │ │ │ │ └── Tests │ │ │ │ │ ├── withoutSharedDepsTests.m │ │ │ │ │ └── without_shared_deps_tests.swift │ │ │ ├── SwiftBridgingHeader │ │ │ │ ├── App │ │ │ │ │ ├── BridgingHeader.h │ │ │ │ │ └── main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ ├── SwiftBridgingHeader.podspec │ │ │ │ └── Tests │ │ │ │ │ ├── BridgingHeader.h │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Resources │ │ │ │ │ ├── debug.entitlements │ │ │ │ │ ├── debug.plist │ │ │ │ │ ├── release.entitlements │ │ │ │ │ └── release.plist │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ ├── d │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── D.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── d_Internal.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.m │ │ │ │ │ └── d.swift │ │ │ │ └── Tests │ │ │ │ │ ├── dTests.m │ │ │ │ │ └── d_tests.swift │ │ │ ├── e │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── e_Internal.h │ │ │ │ │ ├── e.h │ │ │ │ │ ├── e.m │ │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ │ ├── eTests.m │ │ │ │ │ └── e_tests.swift │ │ │ ├── f │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── F.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── f_Internal.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── f.m │ │ │ │ │ └── f.swift │ │ │ │ └── Tests │ │ │ │ │ ├── fTests.m │ │ │ │ │ └── f_tests.swift │ │ │ └── g │ │ │ │ ├── App │ │ │ │ └── main.swift │ │ │ │ ├── G.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── g_Internal.h │ │ │ │ ├── g.h │ │ │ │ ├── g.m │ │ │ │ └── g.swift │ │ │ │ └── Tests │ │ │ │ ├── gTests.m │ │ │ │ └── g_tests.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── WORKSPACE │ └── spec.yml ├── monorepo │ ├── after │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── Frameworks │ │ │ ├── CustomHeaderSearchPaths │ │ │ │ └── BUILD.bazel │ │ │ ├── EsotericGlobs │ │ │ │ └── BUILD.bazel │ │ │ ├── GlobExpansion │ │ │ │ └── BUILD.bazel │ │ │ ├── SelectPerConfigWithSharedDeps │ │ │ │ └── BUILD.bazel │ │ │ ├── SelectPerConfigWithoutSharedDeps │ │ │ │ └── BUILD.bazel │ │ │ ├── SwiftBridgingHeader │ │ │ │ └── BUILD.bazel │ │ │ ├── UsingPodEnvVars │ │ │ │ └── BUILD.bazel │ │ │ ├── a │ │ │ │ └── BUILD.bazel │ │ │ ├── b │ │ │ │ └── BUILD.bazel │ │ │ ├── c │ │ │ │ └── BUILD.bazel │ │ │ ├── d │ │ │ │ └── BUILD.bazel │ │ │ ├── e │ │ │ │ └── BUILD.bazel │ │ │ ├── f │ │ │ │ └── BUILD.bazel │ │ │ └── g │ │ │ │ └── BUILD.bazel │ │ ├── Pods │ │ │ ├── BUILD.bazel │ │ │ ├── OneTrust-CMP-XCFramework │ │ │ │ └── BUILD.bazel │ │ │ ├── OnlyPre │ │ │ │ └── BUILD.bazel │ │ │ ├── Public │ │ │ │ └── BUILD.bazel │ │ │ └── cocoapods-bazel │ │ │ │ └── BUILD.bazel │ │ └── WORKSPACE │ ├── before │ │ ├── .bazelversion │ │ ├── BUILD.bazel │ │ ├── Frameworks │ │ │ ├── CustomHeaderSearchPaths │ │ │ │ ├── CustomHeaderSearchPaths.podspec │ │ │ │ └── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ └── InternalHeader.h │ │ │ │ │ ├── PublicClass.m │ │ │ │ │ └── PublicHeader.h │ │ │ ├── EsotericGlobs │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── EsotericGlobs.podspec │ │ │ │ └── Sources │ │ │ │ │ ├── EGClass.m │ │ │ │ │ ├── EGFunctions.m │ │ │ │ │ ├── EGInternal.h │ │ │ │ │ ├── Private │ │ │ │ │ ├── EGPrivate.h │ │ │ │ │ └── EGPrivate.m │ │ │ │ │ └── Public │ │ │ │ │ ├── EGClass.h │ │ │ │ │ └── EGFunctions.h │ │ │ ├── GlobExpansion │ │ │ │ ├── GlobExpansion.podspec │ │ │ │ └── Resources │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── fixture.json │ │ │ │ │ ├── fixture.otf │ │ │ │ │ ├── fixture.png │ │ │ │ │ ├── fixture.storyboard │ │ │ │ │ ├── fixture.strings │ │ │ │ │ ├── fixture.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ └── fixture.xib │ │ │ ├── SelectPerConfigWithSharedDeps │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── SelectPerConfigWithSharedDeps.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── with_shared_deps_Internal.h │ │ │ │ │ ├── with_shared_deps.h │ │ │ │ │ ├── with_shared_deps.m │ │ │ │ │ └── with_shared_deps.swift │ │ │ │ └── Tests │ │ │ │ │ ├── withSharedDepsTests.m │ │ │ │ │ └── with_shared_deps_tests.swift │ │ │ ├── SelectPerConfigWithoutSharedDeps │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── SelectPerConfigWithoutSharedDeps.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── without_shared_deps_Internal.h │ │ │ │ │ ├── without_shared_deps.h │ │ │ │ │ ├── without_shared_deps.m │ │ │ │ │ └── without_shared_deps.swift │ │ │ │ └── Tests │ │ │ │ │ ├── withoutSharedDepsTests.m │ │ │ │ │ └── without_shared_deps_tests.swift │ │ │ ├── SwiftBridgingHeader │ │ │ │ ├── App │ │ │ │ │ ├── BridgingHeader.h │ │ │ │ │ └── main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ ├── SwiftBridgingHeader.podspec │ │ │ │ └── Tests │ │ │ │ │ ├── BridgingHeader.h │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── UsingPodEnvVars │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ ├── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ │ └── UsingPodEnvVars.podspec │ │ │ ├── a │ │ │ │ ├── A.podspec │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── a_Internal.h │ │ │ │ │ ├── a.h │ │ │ │ │ ├── a.m │ │ │ │ │ └── a.swift │ │ │ │ └── Tests │ │ │ │ │ ├── aTests.m │ │ │ │ │ └── a_tests.swift │ │ │ ├── b │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── B.podspec │ │ │ │ ├── Resources │ │ │ │ │ ├── debug.entitlements │ │ │ │ │ ├── debug.plist │ │ │ │ │ ├── release.entitlements │ │ │ │ │ └── release.plist │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── b_Internal.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── b.m │ │ │ │ │ └── b.swift │ │ │ │ └── Tests │ │ │ │ │ ├── bTests.m │ │ │ │ │ └── b_tests.swift │ │ │ ├── c │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── C.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── c_Internal.h │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c.m │ │ │ │ │ └── c.swift │ │ │ │ └── Tests │ │ │ │ │ ├── cTests.m │ │ │ │ │ └── c_tests.swift │ │ │ ├── d │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── D.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── d_Internal.h │ │ │ │ │ ├── d.h │ │ │ │ │ ├── d.m │ │ │ │ │ └── d.swift │ │ │ │ └── Tests │ │ │ │ │ ├── dTests.m │ │ │ │ │ └── d_tests.swift │ │ │ ├── e │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── E.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── e_Internal.h │ │ │ │ │ ├── e.h │ │ │ │ │ ├── e.m │ │ │ │ │ └── e.swift │ │ │ │ └── Tests │ │ │ │ │ ├── eTests.m │ │ │ │ │ └── e_tests.swift │ │ │ ├── f │ │ │ │ ├── App │ │ │ │ │ └── main.swift │ │ │ │ ├── F.podspec │ │ │ │ ├── Sources │ │ │ │ │ ├── Internal │ │ │ │ │ │ └── f_Internal.h │ │ │ │ │ ├── f.h │ │ │ │ │ ├── f.m │ │ │ │ │ └── f.swift │ │ │ │ └── Tests │ │ │ │ │ ├── fTests.m │ │ │ │ │ └── f_tests.swift │ │ │ └── g │ │ │ │ ├── App │ │ │ │ └── main.swift │ │ │ │ ├── G.podspec │ │ │ │ ├── Sources │ │ │ │ ├── Internal │ │ │ │ │ └── g_Internal.h │ │ │ │ ├── g.h │ │ │ │ ├── g.m │ │ │ │ └── g.swift │ │ │ │ └── Tests │ │ │ │ ├── gTests.m │ │ │ │ └── g_tests.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ └── WORKSPACE │ └── spec.yml ├── pod.tar └── specs-repos │ ├── master │ ├── Forkable │ │ └── 1.0.0 │ │ │ └── Forkable.podspec │ ├── OneTrust-CMP-XCFramework │ │ └── 6.13.0.0 │ │ │ └── OneTrust-CMP-XCFramework.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 ├── spec_helper.rb └── spec_helper └── prepare_spec_repos.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.8 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/bin/console -------------------------------------------------------------------------------- /bin/pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/bin/pod -------------------------------------------------------------------------------- /bin/pod_install_bazel_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/bin/pod_install_bazel_build -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/bin/setup -------------------------------------------------------------------------------- /cocoapods-bazel.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/cocoapods-bazel.gemspec -------------------------------------------------------------------------------- /lib/cocoapods/bazel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods/bazel.rb -------------------------------------------------------------------------------- /lib/cocoapods/bazel/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods/bazel/config.rb -------------------------------------------------------------------------------- /lib/cocoapods/bazel/target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods/bazel/target.rb -------------------------------------------------------------------------------- /lib/cocoapods/bazel/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods/bazel/util.rb -------------------------------------------------------------------------------- /lib/cocoapods/bazel/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods/bazel/version.rb -------------------------------------------------------------------------------- /lib/cocoapods/bazel/xcconfig_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods/bazel/xcconfig_resolver.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/cocoapods/bazel/util_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/cocoapods/bazel/util_spec.rb -------------------------------------------------------------------------------- /spec/cocoapods/bazel/xcconfig_resolver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/cocoapods/bazel/xcconfig_resolver_spec.rb -------------------------------------------------------------------------------- /spec/integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration.rb -------------------------------------------------------------------------------- /spec/integration/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | spec/integration/*/*/bazel-* 3 | -------------------------------------------------------------------------------- /spec/integration/OneTrust-CMP-XCFramework-6.13.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/OneTrust-CMP-XCFramework-6.13.0.zip -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.3.2 -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/CustomHeaderSearchPaths/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/CustomHeaderSearchPaths/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/EsotericGlobs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/EsotericGlobs/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/SelectPerConfigWithSharedDeps/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/SelectPerConfigWithSharedDeps/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/SelectPerConfigWithoutSharedDeps/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/SelectPerConfigWithoutSharedDeps/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/SwiftBridgingHeader/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/SwiftBridgingHeader/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/a/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/a/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/b/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/b/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/c/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/c/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/d/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/d/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/e/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/e/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/f/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/f/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Frameworks/g/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Frameworks/g/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Pods/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Pods/OneTrust-CMP-XCFramework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Pods/OneTrust-CMP-XCFramework/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Pods/OnlyPre/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Pods/OnlyPre/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Pods/Public/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Pods/Public/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/Pods/cocoapods-bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/Pods/cocoapods-bazel/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/experimental_features/after/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/after/WORKSPACE -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.3.2 -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/CustomHeaderSearchPaths.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/CustomHeaderSearchPaths.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/Sources/Internal/InternalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/Sources/Internal/InternalHeader.h -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/Sources/PublicClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/Sources/PublicClass.m -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/CustomHeaderSearchPaths/Sources/PublicHeader.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface PublicClass : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/App/main.swift: -------------------------------------------------------------------------------- 1 | import EsotericGlobs 2 | 3 | let _ = EGClass() 4 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/EsotericGlobs.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/EsotericGlobs/EsotericGlobs.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/EGClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/EGClass.m -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/EGFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/EGFunctions.m -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/EGInternal.h: -------------------------------------------------------------------------------- 1 | #define EGInteral 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.h -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.m -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Public/EGClass.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface EGClass : NSObject 4 | @end -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Public/EGFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/EsotericGlobs/Sources/Public/EGFunctions.h -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/SelectPerConfigWithSharedDeps.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/SelectPerConfigWithSharedDeps.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/Internal/with_shared_deps_Internal.h: -------------------------------------------------------------------------------- 1 | // with_shared_deps Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/with_shared_deps.h: -------------------------------------------------------------------------------- 1 | // with_shared_deps Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/with_shared_deps.m: -------------------------------------------------------------------------------- 1 | // with_shared_deps Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/with_shared_deps.swift: -------------------------------------------------------------------------------- 1 | // with_shared_deps Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/Tests/withSharedDepsTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithSharedDeps/Tests/with_shared_deps_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/SelectPerConfigWithoutSharedDeps.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/SelectPerConfigWithoutSharedDeps.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/Internal/without_shared_deps_Internal.h: -------------------------------------------------------------------------------- 1 | // without_shared_deps Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/without_shared_deps.h: -------------------------------------------------------------------------------- 1 | // without_shared_deps Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/without_shared_deps.m: -------------------------------------------------------------------------------- 1 | // without_shared_deps Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/without_shared_deps.swift: -------------------------------------------------------------------------------- 1 | // without_shared_deps Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/Tests/withoutSharedDepsTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SelectPerConfigWithoutSharedDeps/Tests/without_shared_deps_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/App/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/App/BridgingHeader.h -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/App/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/App/main.swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header 2 | 3 | @import Foundation; 4 | 5 | @interface A: NSObject 6 | @end -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Sources/a.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Sources/a.m -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/SwiftBridgingHeader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/SwiftBridgingHeader.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Tests/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Tests/BridgingHeader.h -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Tests/a_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/SwiftBridgingHeader/Tests/a_tests.swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Resources/debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/b/Resources/debug.entitlements -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Resources/debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/b/Resources/debug.plist -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Resources/release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/b/Resources/release.entitlements -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Resources/release.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/b/Resources/release.plist -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift 2 | import OTPublishersHeadlessSDK -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/d/D.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/Sources/Internal/d_Internal.h: -------------------------------------------------------------------------------- 1 | // d Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/Sources/d.h: -------------------------------------------------------------------------------- 1 | // d Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/Sources/d.m: -------------------------------------------------------------------------------- 1 | // d Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/Sources/d.swift: -------------------------------------------------------------------------------- 1 | // d Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/Tests/dTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/d/Tests/d_tests.swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/F.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/f/F.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/Sources/Internal/f_Internal.h: -------------------------------------------------------------------------------- 1 | // f Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/Sources/f.h: -------------------------------------------------------------------------------- 1 | // f Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/Sources/f.m: -------------------------------------------------------------------------------- 1 | // f Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/Sources/f.swift: -------------------------------------------------------------------------------- 1 | // f Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/Tests/fTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/G.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Frameworks/g/G.podspec -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/Sources/Internal/g_Internal.h: -------------------------------------------------------------------------------- 1 | // g Internal header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/Sources/g.h: -------------------------------------------------------------------------------- 1 | // g Header -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/Sources/g.m: -------------------------------------------------------------------------------- 1 | // g Implementation -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/Sources/g.swift: -------------------------------------------------------------------------------- 1 | // g Swift -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/Tests/gTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Podfile -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/experimental_features/before/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/before/WORKSPACE -------------------------------------------------------------------------------- /spec/integration/experimental_features/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/experimental_features/spec.yml -------------------------------------------------------------------------------- /spec/integration/monorepo/after/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.3.2 -------------------------------------------------------------------------------- /spec/integration/monorepo/after/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/CustomHeaderSearchPaths/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/CustomHeaderSearchPaths/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/EsotericGlobs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/EsotericGlobs/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/GlobExpansion/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/GlobExpansion/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/SelectPerConfigWithSharedDeps/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/SelectPerConfigWithSharedDeps/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/SelectPerConfigWithoutSharedDeps/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/SelectPerConfigWithoutSharedDeps/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/SwiftBridgingHeader/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/SwiftBridgingHeader/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/UsingPodEnvVars/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/UsingPodEnvVars/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/a/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/a/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/b/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/b/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/c/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/c/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/d/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/d/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/e/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/e/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/f/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/f/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Frameworks/g/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Frameworks/g/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Pods/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Pods/OneTrust-CMP-XCFramework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Pods/OneTrust-CMP-XCFramework/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Pods/OnlyPre/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Pods/OnlyPre/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Pods/Public/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Pods/Public/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/Pods/cocoapods-bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/Pods/cocoapods-bazel/BUILD.bazel -------------------------------------------------------------------------------- /spec/integration/monorepo/after/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/after/WORKSPACE -------------------------------------------------------------------------------- /spec/integration/monorepo/before/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.3.2 -------------------------------------------------------------------------------- /spec/integration/monorepo/before/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/CustomHeaderSearchPaths.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/CustomHeaderSearchPaths.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/Sources/Internal/InternalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/Sources/Internal/InternalHeader.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/Sources/PublicClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/Sources/PublicClass.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/CustomHeaderSearchPaths/Sources/PublicHeader.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface PublicClass : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/App/main.swift: -------------------------------------------------------------------------------- 1 | import EsotericGlobs 2 | 3 | let _ = EGClass() 4 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/EsotericGlobs.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/EsotericGlobs/EsotericGlobs.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/EGClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/EGClass.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/EGFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/EGFunctions.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/EGInternal.h: -------------------------------------------------------------------------------- 1 | #define EGInteral 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Private/EGPrivate.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Public/EGClass.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface EGClass : NSObject 4 | @end -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Public/EGFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/EsotericGlobs/Sources/Public/EGFunctions.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/GlobExpansion.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/GlobExpansion/GlobExpansion.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.otf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.storyboard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/GlobExpansion/Resources/fixture.xib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/SelectPerConfigWithSharedDeps.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/SelectPerConfigWithSharedDeps.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/Internal/with_shared_deps_Internal.h: -------------------------------------------------------------------------------- 1 | // with_shared_deps Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/with_shared_deps.h: -------------------------------------------------------------------------------- 1 | // with_shared_deps Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/with_shared_deps.m: -------------------------------------------------------------------------------- 1 | // with_shared_deps Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/Sources/with_shared_deps.swift: -------------------------------------------------------------------------------- 1 | // with_shared_deps Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/Tests/withSharedDepsTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithSharedDeps/Tests/with_shared_deps_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/SelectPerConfigWithoutSharedDeps.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/SelectPerConfigWithoutSharedDeps.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/Internal/without_shared_deps_Internal.h: -------------------------------------------------------------------------------- 1 | // without_shared_deps Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/without_shared_deps.h: -------------------------------------------------------------------------------- 1 | // without_shared_deps Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/without_shared_deps.m: -------------------------------------------------------------------------------- 1 | // without_shared_deps Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/Sources/without_shared_deps.swift: -------------------------------------------------------------------------------- 1 | // without_shared_deps Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/Tests/withoutSharedDepsTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SelectPerConfigWithoutSharedDeps/Tests/without_shared_deps_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/App/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/App/BridgingHeader.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/App/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/App/main.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header 2 | 3 | @import Foundation; 4 | 5 | @interface A: NSObject 6 | @end -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Sources/a.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Sources/a.m -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/SwiftBridgingHeader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/SwiftBridgingHeader.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Tests/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Tests/BridgingHeader.h -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Tests/a_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/SwiftBridgingHeader/Tests/a_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/UsingPodEnvVars.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/UsingPodEnvVars/UsingPodEnvVars.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/a/A.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/Internal/a_Internal.h: -------------------------------------------------------------------------------- 1 | // a Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/a.h: -------------------------------------------------------------------------------- 1 | // a Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/a.m: -------------------------------------------------------------------------------- 1 | // a Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Sources/a.swift: -------------------------------------------------------------------------------- 1 | // a Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Tests/aTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/a/Tests/a_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/b/B.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Resources/debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/b/Resources/debug.entitlements -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Resources/debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/b/Resources/debug.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Resources/release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/b/Resources/release.entitlements -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Resources/release.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/b/Resources/release.plist -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/Internal/b_Internal.h: -------------------------------------------------------------------------------- 1 | // b Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/b.h: -------------------------------------------------------------------------------- 1 | // b Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/b.m: -------------------------------------------------------------------------------- 1 | // b Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Sources/b.swift: -------------------------------------------------------------------------------- 1 | // b Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Tests/bTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/b/Tests/b_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/C.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/c/C.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/Internal/c_Internal.h: -------------------------------------------------------------------------------- 1 | // c Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/c.h: -------------------------------------------------------------------------------- 1 | // c Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/c.m: -------------------------------------------------------------------------------- 1 | // c Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Sources/c.swift: -------------------------------------------------------------------------------- 1 | // c Swift 2 | import OTPublishersHeadlessSDK -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Tests/cTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/c/Tests/c_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/D.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/d/D.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/Internal/d_Internal.h: -------------------------------------------------------------------------------- 1 | // d Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/d.h: -------------------------------------------------------------------------------- 1 | // d Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/d.m: -------------------------------------------------------------------------------- 1 | // d Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Sources/d.swift: -------------------------------------------------------------------------------- 1 | // d Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Tests/dTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/d/Tests/d_tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/d/Tests/d_tests.swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/E.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/e/E.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/Internal/e_Internal.h: -------------------------------------------------------------------------------- 1 | // e Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/e.h: -------------------------------------------------------------------------------- 1 | // e Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/e.m: -------------------------------------------------------------------------------- 1 | // e Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Sources/e.swift: -------------------------------------------------------------------------------- 1 | // e Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Tests/eTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/e/Tests/e_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/F.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/f/F.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/Internal/f_Internal.h: -------------------------------------------------------------------------------- 1 | // f Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/f.h: -------------------------------------------------------------------------------- 1 | // f Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/f.m: -------------------------------------------------------------------------------- 1 | // f Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Sources/f.swift: -------------------------------------------------------------------------------- 1 | // f Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Tests/fTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/f/Tests/f_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/App/main.swift: -------------------------------------------------------------------------------- 1 | func main() {} 2 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/G.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Frameworks/g/G.podspec -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/Internal/g_Internal.h: -------------------------------------------------------------------------------- 1 | // g Internal header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/g.h: -------------------------------------------------------------------------------- 1 | // g Header -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/g.m: -------------------------------------------------------------------------------- 1 | // g Implementation -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Sources/g.swift: -------------------------------------------------------------------------------- 1 | // g Swift -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Tests/gTests.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Frameworks/g/Tests/g_tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Podfile -------------------------------------------------------------------------------- /spec/integration/monorepo/before/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/Podfile.lock -------------------------------------------------------------------------------- /spec/integration/monorepo/before/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/monorepo/before/WORKSPACE -------------------------------------------------------------------------------- /spec/integration/monorepo/spec.yml: -------------------------------------------------------------------------------- 1 | description: generates build files in a CocoaPods monorepo 2 | -------------------------------------------------------------------------------- /spec/integration/pod.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/pod.tar -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/Forkable/1.0.0/Forkable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/master/Forkable/1.0.0/Forkable.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/OneTrust-CMP-XCFramework/6.13.0.0/OneTrust-CMP-XCFramework.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/master/OneTrust-CMP-XCFramework/6.13.0.0/OneTrust-CMP-XCFramework.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/OnlyPre/1.0.0.pre.1/OnlyPre.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/master/OnlyPre/1.0.0.pre.1/OnlyPre.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/Public/3.0.0/Public.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/master/Public/3.0.0/Public.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/master/url: -------------------------------------------------------------------------------- 1 | https://github.com/CocoaPods/Specs.git 2 | -------------------------------------------------------------------------------- /spec/integration/specs-repos/private/Forkable/1.0.0-internal.3/Forkable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/private/Forkable/1.0.0-internal.3/Forkable.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/private/UsesForkable/1.0.0/UsesForkable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/private/UsesForkable/1.0.0/UsesForkable.podspec -------------------------------------------------------------------------------- /spec/integration/specs-repos/private/url: -------------------------------------------------------------------------------- 1 | https://github.com/Private/SpecsForks.git 2 | -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/.url: -------------------------------------------------------------------------------- 1 | https://cdn.cocoapods.org/ -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/CocoaPods-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/trunk/CocoaPods-version.yml -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/CocoaPods-version.yml.etag: -------------------------------------------------------------------------------- 1 | "a6937c11ec2312150ec6c29e76778beb-ssl" -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt -------------------------------------------------------------------------------- /spec/integration/specs-repos/trunk/all_pods_versions_e_0_7.txt.etag: -------------------------------------------------------------------------------- 1 | "8021f60452b7b4d99bdb4d280f6eb6f1-ssl" -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper/prepare_spec_repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazel-ios/cocoapods-bazel/HEAD/spec/spec_helper/prepare_spec_repos.rb --------------------------------------------------------------------------------