Go to file
Artur 65a3557d7f Branch change to master 2019-10-14 14:57:33 +03:00
Alamofire Branch change to master 2019-10-14 14:57:33 +03:00
Atributika Branch change to master 2019-10-14 14:57:33 +03:00
BEMCheckBox Branch change to master 2019-10-14 14:57:33 +03:00
BonMot Branch change to master 2019-10-14 14:57:33 +03:00
Cache Branch change to master 2019-10-14 14:57:33 +03:00
Charts Branch change to master 2019-10-14 14:57:33 +03:00
CollectionKit Branch change to master 2019-10-14 14:57:33 +03:00
CryptoSwift Branch change to master 2019-10-14 14:57:33 +03:00
DeviceKit Branch change to master 2019-10-14 14:57:33 +03:00
DynamicBlurView Add some frameworks 2019-02-11 15:02:02 +03:00
FSPagerView Branch change to master 2019-10-14 14:57:33 +03:00
IQKeyboardManager Branch change to master 2019-10-14 14:57:33 +03:00
ImagePicker Branch change to master 2019-10-14 14:57:33 +03:00
KeychainAccess Branch change to master 2019-10-14 14:57:33 +03:00
Kingfisher Branch change to master 2019-10-14 14:57:33 +03:00
LeadKit Branch change to master 2019-10-14 14:57:33 +03:00
LeadKitAdditions Branch change to master 2019-10-14 14:57:33 +03:00
Material Branch change to master 2019-10-14 14:57:33 +03:00
MobileMessaging Branch change to master 2019-10-14 14:57:33 +03:00
Motion Branch change to master 2019-10-14 14:57:33 +03:00
PhoneNumberKit Branch change to master 2019-10-14 14:57:33 +03:00
PinLayout Branch change to master 2019-10-14 14:57:33 +03:00
PopupDialog Branch change to master 2019-10-14 14:57:33 +03:00
Pulley Branch change to master 2019-10-14 14:57:33 +03:00
Reachability Branch change to master 2019-10-14 14:57:33 +03:00
RxAlamofire Branch change to master 2019-10-14 14:57:33 +03:00
RxCoreLocation Branch change to master 2019-10-14 14:57:33 +03:00
RxGesture Branch change to master 2019-10-14 14:57:33 +03:00
RxKeyboard Branch change to master 2019-10-14 14:57:33 +03:00
RxKingfisher Branch change to master 2019-10-14 14:57:33 +03:00
RxOptional Branch change to master 2019-10-14 14:57:33 +03:00
RxReachability Branch change to master 2019-10-14 14:57:33 +03:00
RxSwift Branch change to master 2019-10-14 14:57:33 +03:00
SideMenu Branch change to master 2019-10-14 14:57:33 +03:00
SnapKit Branch change to master 2019-10-14 14:57:33 +03:00
StatefulViewController Branch change to master 2019-10-14 14:57:33 +03:00
SwiftDate Branch change to master 2019-10-14 14:57:33 +03:00
SwiftValidator Branch change to master 2019-10-14 14:57:33 +03:00
SwipeCellKit Branch change to master 2019-10-14 14:57:33 +03:00
TableKit Branch change to master 2019-10-14 14:57:33 +03:00
UIScrollView_InfiniteScroll Branch change to master 2019-10-14 14:57:33 +03:00
.gitignore add gitignore 2019-01-25 16:58:26 +03:00
Cartfile Revert "Branch was changed to master" 2019-10-14 14:50:00 +03:00
Cartfile.resolved Revert "Branch was changed to master" 2019-10-14 14:50:00 +03:00
README.md Update README.md 2019-04-11 19:20:49 +03:00

README.md

CarthageBinaries

This repository contains carthage binary project specifications and compiled binary frameworks.

Repository structure

Repository has the following structure:

.
├── Alamofire
│   ├── 4.8.1
│   │   └── Alamofire.framework.zip
│   └── Alamofire.json
├── Kingfisher
│   ├── 4.10.1
│   │   └── Kingfisher.framework.zip
│   ├── 5.3.0
│   │   └── Kingfisher.framework.zip
│   └── Kingfisher.json
└── LeadKit
    ├── 0.9.12
    │   └── LeadKit.framework.zip
    ├── 0.9.13
    │   └── LeadKit.framework.zip
    ├── 0.9.14
    │   └── LeadKit.framework.zip
    └── LeadKit.json

Where contents of json files looks like this:

{
    "0.9.12": "https://github.com/TouchInstinct/CarthageBinaries/raw/master/LeadKit/0.9.12/LeadKit.framework.zip",
    "0.9.13": "https://github.com/TouchInstinct/CarthageBinaries/raw/master/LeadKit/0.9.13/LeadKit.framework.zip",
    "0.9.14": "https://github.com/TouchInstinct/CarthageBinaries/raw/master/LeadKit/0.9.14/LeadKit.framework.zip"
}

Adding new binaries

  • Add framework to Cartfile
  • Run carthage update (add --platform iOS only if build failed for non-iOS platforms)
  • Create folder for new version: mkdir -p FrameworkName/X where X - framework version (0.9.14 for example)
  • Run carthage archive FrameworkName --output FrameworkName/X
  • Create FrameworkName.json if there is not yet
  • Create new branch, push your changes and create pull request
  • You're done!