Go to file
Artur Azarau 5e64c62ce9 RxSwift recompiled 2019-10-01 11:50:49 +03:00
Alamofire Alamofire recompiled 2019-10-01 11:17:39 +03:00
Atributika Atributika recompiled 2019-10-01 11:18:00 +03:00
BEMCheckBox BEMCheckbox recompiled 2019-10-01 11:18:23 +03:00
BonMot BonMot recompiled 2019-10-01 11:18:41 +03:00
Cache Cache recompiled 2019-10-01 11:19:09 +03:00
Charts Charts recompiled 2019-10-01 11:19:30 +03:00
CollectionKit CollectionKit recompiled 2019-10-01 11:19:50 +03:00
CryptoSwift CryptoSwift recompiled 2019-10-01 11:20:12 +03:00
DeviceKit DeviceKit recompiled 2019-10-01 11:20:32 +03:00
DynamicBlurView Add some frameworks 2019-02-11 15:02:02 +03:00
FSPagerView FSPagerView recompiled 2019-10-01 11:21:13 +03:00
IQKeyboardManager Keyboard manager recompiled 2019-10-01 11:22:11 +03:00
ImagePicker ImagePicker recompiled 2019-10-01 11:21:43 +03:00
KeychainAccess KeychainAccess recompiled 2019-10-01 11:22:34 +03:00
Kingfisher Kingfisher recompiled 2019-10-01 11:22:54 +03:00
LeadKit change brach, need remove after 2019-09-03 01:14:05 +03:00
LeadKitAdditions change brach, need remove after 2019-09-03 02:54:23 +03:00
Material Material recompiled 2019-10-01 11:23:23 +03:00
MobileMessaging Mobile messaging recompiled 2019-10-01 11:23:51 +03:00
Motion Motion recompiled 2019-10-01 11:24:08 +03:00
PhoneNumberKit PhoneNumberKit recompiled 2019-10-01 11:24:28 +03:00
PinLayout PinLayout recompiled 2019-10-01 11:24:47 +03:00
PopupDialog PopUp dialog recompiled 2019-10-01 11:25:05 +03:00
Pulley Pulley recompiled 2019-10-01 11:25:21 +03:00
Reachability Reachability recompiled 2019-10-01 11:25:39 +03:00
RxAlamofire RxAlamofire recompiled 2019-10-01 11:48:13 +03:00
RxCoreLocation RxCoreLocation recompiled 2019-10-01 11:49:26 +03:00
RxGesture RxGesture recompiled 2019-10-01 11:49:40 +03:00
RxKeyboard RxKeyboard recompiled 2019-10-01 11:49:49 +03:00
RxKingfisher RxKingfisher recompiled 2019-10-01 11:49:59 +03:00
RxOptional RxOptional recompiled 2019-10-01 11:50:12 +03:00
RxReachability RxReachability recompiled 2019-10-01 11:50:31 +03:00
RxSwift RxSwift recompiled 2019-10-01 11:50:49 +03:00
SideMenu SideMenu recompiled 2019-10-01 11:25:59 +03:00
SnapKit SnapKit recompiled 2019-10-01 11:26:19 +03:00
StatefulViewController StatefulVC recompiled 2019-10-01 11:26:36 +03:00
SwiftDate SwiftDate recompiled 2019-10-01 11:26:54 +03:00
SwiftValidator SwiftValidator recompiled 2019-10-01 11:27:13 +03:00
SwipeCellKit SwipeCellKit recompiled 2019-10-01 11:27:32 +03:00
TableKit TableKit recompiled 2019-10-01 11:29:19 +03:00
UIScrollView_InfiniteScroll UIScrollViewInfiniteScroll recompiled 2019-10-01 11:29:47 +03:00
.gitignore add gitignore 2019-01-25 16:58:26 +03:00
Cartfile rebuild RxSwift 4.5.0 with swift 5.1 2019-09-02 16:15:56 +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!