Tags: fisheye-123/PodToBUILD
Tags
Treat download links as non-file URLs (bazel-xcode#89) This allows the file-type determination to correctly ignore the fragment (part after the `#`) in the URL, plus it's more correct, since the URL *isn't* a file path.
Updates for rules_apple resource rules (bazel-xcode#68) - objc_bundle is now apple_bundle_import - Bundles and resources are passed through the `data` value of objc_library - Added function to optionally add load statements based on the types of skylark nodes in the build files (swift, apple resource bundles, etc)
iOS repository_rule example / reorg examples (bazel-xcode#59) This PR adds an iOS application example using the `repository_rule` This PR both makes it easier to iterate on examples, and define what is built in an example with Bazel - just edit Examples/*/BUILD to include the targets. Previously, examples were hidden in the `BuildTests` directory, and undiscoverable. Additionally, `BuildTests` did some interesting things, which made it hard to manually develop and iterate on Examples. `BuildTests` is now a very lightweight wrapper around `make/bazel` Future work: - due to building of `RepoTools` the rule isn't 100% useable yet - support `vendorizing` deps where `rules_pods` is in the `WORKSPACE` Additionally: make CI improvements and fixes - Run tests sequentially - Replace mktemp, add error handling