Releases: cocoaheads-kyiv-14-workshop/magic-ball
Releases · cocoaheads-kyiv-14-workshop/magic-ball
testing & coverage
- Setup testing and coverage in private pods using Fastlane Scan and Slather
shared fastlane
- Introduced Fastlane and shared it between private pods
Tutorial private repo pod
- Moved Tutorial from MagicBall local pods into separate private repo pod
- Published Tutorial 0.1.0 version:
bundle exec pod repo push magic-ball-specs Tutorial.podspec --allow-warnings --verbose --sources='[email protected]:cocoaheads-kyiv-14-workshop/specs.git',master
- Switched MagicBall to private Tutorial repo instead of local one (see Podfile)
- As a result, we are able to develop private interdependent modules at the same time using CocoaPods
RandomGenerator private repo pod
- Registered private Specs repo:
bundle exec pod repo add magic-ball-specs [email protected]:cocoaheads-kyiv-14-workshop/specs.git
- Moved RandomGenerator from MagicBall local pods into separate private repo pod
- Published RandomGenerator 0.1.0 version:
bundle exec pod repo push magic-ball-specs RandomGenerator.podspec --allow-warnings --verbose
- Switched Tutorial to private RandomGenerator repo instead of local one (see Tutorial/Example/Podfile)
- Switched MagicBall to private RandomGenerator repo instead of local one (see Podfile)
- As a result, we are able to develop mixed interdependent modules - local and from private repos at the same time using CocoaPods
Tutorial local pod
- Created local pod Tutorial:
bundle exec pod lib create Tutorial
- Integrated RandomGenerator into Tutorial as a local pod (see Tutorial.podspec and Tutorial/Example/Podfile)
- Integrated Tutorial into MagicBall (see Podfile)
- Fixed Xcode 10 issue with not compiling new changes from local pods
- As a result, we are able to develop separate interdependent modules in a single repo using CocoaPods
RandomGenerator local pod
- Setup Gemfile
- Created local pod RandomGenerator:
bundle exec pod lib create RandomGenerator
- Created Podfile:
bundle exec pod init
- Integrated RandomGenerator into MagicBall (see Podfile)
initial version 1.0
- Created Xcode project MagicBall