xchelper
There are many iOS projects in daily maintenance, including differences in directory structure, code dependencies and Travis. Yml.
Some projects use Bundler, others just cocoapods and have different Gemfile/Podfile paths. And execute the appropriate install. 'Xchelper test' can automatically assemble parameters such as' xcodeBuild test 'workspace scheme.Copy the code
Xchelper can unify these tedious tasks.
Installation
Method | Command |
---|---|
curl | sh -c "$(curl -fsSL https://raw.githubusercontent.com/BlueIntent/xchelper/main/scripts/install.sh)" |
wget | sh -c "$(wget -O- https://raw.githubusercontent.com/BlueIntent/xchelper/main/scripts/install.sh)" |
Usage
Select the directory where the Gemfile resides and execute the bundle exec rake. Find the Podfile directory and run pod Install –verbose.
xchelper install
Copy the code
Pull project dependencies and automatically open workspace.
xchelper run
Copy the code
Perform xcodebuild test
xchelper test
Copy the code
Homepage
- Github.com/BlueIntent/…