Releases: RxSwiftCommunity/RxController
Releases · RxSwiftCommunity/RxController
0.9.4
0.9.3
- Add maxLevels parameter for rxtree
➜ Example git:(develop/rxtree) ✗ ./rxtree AppFlow --maxLevels 4
AppFlow
├── MainFlow
│ ├── ChildFlow
│ │ ├── InfoViewController
│ │ │ ├── NumberViewController
│ ├── ProfileFlow
│ │ ├── FriendsFlow
│ │ │ ├── ProfileFlow
│ │ │ ├── FriendsViewController
│ │ ├── ProfileViewController
0.9.2
0.9.1
- Add rxtree command.
- To build and use rxtree automatically while running pod install, add the following post_install script into your Podfile
post_install do |installer|
system("bash #{Pathname(installer.sandbox.root)}/RxController/rxtree/build_for_xcode.sh")
end
- To use rxtree, run the following command in the root directory which contains the Xcode project file.
./rxtree [FlowName]