Go to file
Ivan Babkin d920329d37 Fix 2019-10-16 16:42:01 +03:00
Alamofire Fix 2019-10-16 16:42:01 +03:00
Atributika Fix 2019-10-16 16:23:47 +03:00
BEMCheckBox Fix 2019-10-16 16:42:01 +03:00
BonMot Fix 2019-10-16 16:42:01 +03:00
Cache Fix 2019-10-16 16:42:01 +03:00
Charts Fix 2019-10-16 16:42:01 +03:00
CollectionKit Fix 2019-10-16 16:33:36 +03:00
CryptoSwift Fix 2019-10-16 16:42:01 +03:00
DeviceKit Fix 2019-10-16 16:42:01 +03:00
DynamicBlurView Fix 2019-10-16 16:42:01 +03:00
FSPagerView Fix 2019-10-16 16:42:01 +03:00
IQKeyboardManager Fix 2019-10-16 16:42:01 +03:00
ImagePicker Fix 2019-10-16 16:42:01 +03:00
KeychainAccess Fix 2019-10-16 16:33:36 +03:00
Kingfisher Fix 2019-10-16 16:42:01 +03:00
LeadKit Fix 2019-10-16 16:23:47 +03:00
LeadKitAdditions Fix 2019-10-16 16:33:36 +03:00
Material Fix 2019-10-16 16:42:01 +03:00
MobileMessaging Fix 2019-10-16 16:42:01 +03:00
Motion Fix 2019-10-16 16:42:01 +03:00
PhoneNumberKit Fix 2019-10-16 16:42:01 +03:00
PinLayout Fix 2019-10-16 16:42:01 +03:00
PopupDialog Fix 2019-10-16 16:42:01 +03:00
Pulley Fix 2019-10-16 16:42:01 +03:00
Reachability Fix 2019-10-16 16:42:01 +03:00
RxAlamofire Fix 2019-10-16 16:23:47 +03:00
RxCoreLocation Fix 2019-10-16 16:42:01 +03:00
RxGesture Fix 2019-10-16 16:42:01 +03:00
RxKeyboard Fix 2019-10-16 16:42:01 +03:00
RxKingfisher Fix 2019-10-16 16:42:01 +03:00
RxOptional Fix 2019-10-16 16:42:01 +03:00
RxReachability Fix 2019-10-16 16:42:01 +03:00
RxSwift Fix 2019-10-16 16:23:47 +03:00
SideMenu Fix 2019-10-16 16:42:01 +03:00
SnapKit Fix 2019-10-16 16:42:01 +03:00
StatefulViewController Fix 2019-10-16 16:42:01 +03:00
SwiftDate Fix 2019-10-16 16:42:01 +03:00
SwiftValidator Fix 2019-10-16 16:23:47 +03:00
SwipeCellKit Fix 2019-10-16 16:42:01 +03:00
TableKit Fix 2019-10-16 16:42:01 +03:00
UIScrollView_InfiniteScroll Fix 2019-10-16 16:42:01 +03:00
.gitignore add gitignore 2019-01-25 16:58:26 +03:00
Cartfile Add LeadKit 0.9.26 2019-08-30 13:05:21 +03:00
Cartfile.resolved Atributika fixed 2019-04-02 13:40:22 +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!