https://github.com/redmadrobot/cocoapods-specs
https://github.com/redmadrobot/cocoapods-specs
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/redmadrobot/cocoapods-specs
- Owner: RedMadRobot
- Created: 2017-12-21T14:33:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-29T07:52:45.000Z (over 6 years ago)
- Last Synced: 2025-01-16T05:55:06.467Z (3 months ago)
- Language: Ruby
- Size: 8.79 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cocoapods-specs
This repo contains cocoapods podspecs for RMR code generators in binary format.
Add source information into Podfile to install:
```
source 'https://github.com/CocoaPods/Specs.git' # <<<<<<< Cocoapods repo
source 'https://github.com/RedMadRobot/cocoapods-specs' # <<<<<<< RMR repoplatform :ios, '11.0'
use_frameworks!project 'Project.xcodeproj'
workspace 'Project.xcworkspace'target :Project do
project 'Project.xcodeproj'
pod 'RMRDAOGenerator'
pod 'RMRParserGenerator'
end
```
## How to prepare binary release for cocoapodsGenerator can be installed via cocoapods without building it from sources.
Each time you **update generator repository** you need to **draft new release** for cocoapods:
1. Add tag for last commit.
2. Build generator.
3. Get binary file and license file and then zip it. Ensure there is no root folder or cocoapods won't install it.
You can use this console command to zip files only:```
zip parser_generator.zip ParserGenerator LICENSE
```4. Go to generator repository and draft new release at releases tab in Github. Upload zip.
5. Update specs in this [specs repo](https://github.com/RedMadRobot/cocoapods-specs). Info can be found [here](https://guides.cocoapods.org/making/specs-and-specs-repo.html).