mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-03-27 02:24:15 +08:00
* Perhaps controversially, decomposing ASRangeControllerUpdateRangeProtocol+Beta.h such that the categories on various classes are defined in the classes themselves since that's where the implementation of those categories is provided. * Updating unit tests and import other headers the tests took for granted. The tests could probably import the umbrella header and not have to worry about this. * Updating the "Life without Cocoapods" sample to build and run dependent on ASDK as a static library. * Added a "Life With Frameworks" sample app to build and run dependent on ASDK as a framework, proving the framework targets work.
"Life Without CocoaPods"
This is a very simple pseudo-"integration test" project that links against AsyncDisplayKit manually, rather than using CocoaPods. If it fails to compile, Travis CI builds will fail. To escape from such dire straits:
-
If you've added a new class intended for public use, make sure you added its header to the "Public" group of the "Headers" build phase in the AsyncDisplayKit target. Note that this smoke test will only fail if you remembered to add your new file to the umbrella helper.
-
If you added a new framework dependency (like AssetsLibrary or Photos), add it to this project's Link Binary With Libraries build phase and update the project README (both README.md and docs/index.md).