-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathall_github_urls.txt
18779 lines (18777 loc) · 754 KB
/
all_github_urls.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
https://github.com/zpqrtbnk/Zbu.ModelsBuilder
https://github.com/localvoid/uix
https://github.com/karan/validator.dart
https://github.com/agudulin/gulp-dart
https://github.com/xaguzman/tween-engine-dart
https://github.com/Scorpiion/Vane
https://github.com/domokit/cassowary
https://github.com/vojtajina/js2dart
https://github.com/vadimtsushko/objectory
https://github.com/valotas/mustache4dart
https://github.com/xxgreg/dart_postgresql
https://github.com/nex3/dart-mode
https://github.com/angular/route.dart
https://github.com/dart-lang/markdown
https://github.com/StrykerKKD/dartrocket
https://github.com/angular/di.dart
https://github.com/google/stagehand
https://github.com/guillermooo/dart-sublime-bundle
https://github.com/dart-lang/dart-vim-plugin
https://github.com/wdevore/Ranger-Dart
https://github.com/FedeOmoto/pixi
https://github.com/petitparser/dart-petitparser
https://github.com/flutter/engine
https://github.com/dartist/jaded
https://github.com/brendan-duncan/image
https://github.com/ForceUniverse/dart-force
https://github.com/google/quiver-dart
https://github.com/dartist/express
https://github.com/rikulo/stream
https://github.com/FedeOmoto/spine
https://github.com/redstone-dart/redstone
https://github.com/vsavkin/guinness
https://github.com/jamesots/sqljocky
https://github.com/lvivski/start
https://github.com/tomakehurst/saboteur
https://github.com/ninenines/cowboy
https://github.com/videlalvaro/gen_microservice
https://github.com/puniverse/capsule
https://github.com/wso2/msf4j
https://github.com/coreos/etcd
https://github.com/EsotericSoftware/kryo
https://github.com/davidmoreno/onion
https://github.com/lagom/lagom
https://github.com/keycloak/keycloak
https://github.com/boundary/ordasity
https://github.com/dakrone/cheshire
https://github.com/serverless/serverless
https://github.com/weavejester/duct
https://github.com/eBay/fabio
https://github.com/harrah/sbinary
https://github.com/airlift/airlift
https://github.com/go-kit/kit
https://github.com/github/janky
https://github.com/Netflix/denominator
https://github.com/real-logic/Aeron
https://github.com/osiam/osiam
https://github.com/danielsz/system
https://github.com/eBay/Neutrino
https://github.com/nathanmarz/kafka-deploy
https://github.com/czerwonkabartosz/Micro-Whalla
https://github.com/alibaba/fastjson
https://github.com/nanopack/mist
https://github.com/nanopack/shaman
https://github.com/Netflix/zuul
https://github.com/DatawiseIO/Project6
https://github.com/otto-de/tesla-microservice
https://github.com/yesodweb/yesod
https://github.com/mrniko/redisson
https://github.com/wolkykim/libasyncd/
https://github.com/airbnb/smartstack-cookbook
https://github.com/ha/doozerd
https://github.com/pquerna/ffjson
https://github.com/skinny-framework/skinny-micro
https://github.com/flosell/lambdacd
https://github.com/RuedigerMoeller/fast-serialization
https://github.com/skynetservices/skydns
https://github.com/wardrop/Scorched
https://github.com/Netflix/karyon
https://github.com/mochi/mochiweb
https://github.com/mcollina/ascoltatori
https://github.com/zeromq/malamute
https://github.com/mesos/chronos
https://github.com/splunk/pion
https://github.com/vcr/vcr
https://github.com/docker/libchan
https://github.com/softwaremill/reactive-kafka
https://github.com/vulcand/vulcand
https://github.com/goadesign/goa
https://github.com/eBay/restcommander
https://github.com/coreos/dex
https://github.com/danielgtaylor/aglio
https://github.com/codegangsta/negroni
https://github.com/reborndb/reborn
https://github.com/yelp/elastalert
https://github.com/koding/kite
https://github.com/nearform/nscale
https://github.com/onefinestay/nameko
https://github.com/gliderlabs/registrator
https://github.com/elixir-lang/plug
https://github.com/Netflix/Fenzo
https://github.com/RisingStack/trace-nodejs
https://github.com/epam/Wilma
https://github.com/tripit/slate
https://github.com/aol/micro-server
https://github.com/rancher/os
https://github.com/eBay/parallec
https://github.com/FIXTradingCommunity/fix-simple-binary-encoding
https://github.com/rancher/rancher
https://github.com/spring-cloud/spring-cloud-netflix
https://github.com/wprl/baucis
https://github.com/rightscale/praxis
https://github.com/antirez/disque
https://github.com/advantageous/qbit
https://github.com/ssbc/docs
https://github.com/Netflix/SimianArmy
https://github.com/ochrons/boopickle
https://github.com/Netflix/Hystrix
https://github.com/apex/apex
https://github.com/spotify/crtauth
https://github.com/gocraft/web
https://github.com/micro/micro
https://github.com/endurox-dev/endurox/
https://github.com/erlang/otp
https://github.com/onyx-platform/onyx
https://github.com/spotify/helios
https://github.com/tumblr/colossus
https://github.com/stefanocasazza/ULib
https://github.com/gilt/ionroller
https://github.com/hailocab/h2
https://github.com/CiscoCloud/microservices-infrastructure
https://github.com/FasterXML/jackson
https://github.com/FasterXML/jackson-module-afterburner
https://github.com/datasift/served
https://github.com/weavejester/compojure
https://github.com/oktal/pistache
https://github.com/saltstack/salt
https://github.com/scotty-web/scotty
https://github.com/sgieseking/anyrpc
https://github.com/GraftJS/graft
https://github.com/aol/simple-react
https://github.com/Adaptv/ribs2
https://github.com/mbryzek/apidoc
https://github.com/RxSwiftCommunity/RxMediaPicker
https://github.com/Yalantis/Koloda
https://github.com/FabrizioBrancati/BFKit
https://github.com/dekatotoro/SlideMenuControllerSwift
https://github.com/shinobicontrols/iOS8-day-by-day
https://github.com/mchoe/SwiftSVG
https://github.com/delannoyk/AudioPlayer
https://github.com/GabrielAlva/Swift-Prompts
https://github.com/Karumi/Kin
https://github.com/ruslanskorb/RSKKeyboardAnimationObserver
https://github.com/icanzilb/JSONModel
https://github.com/evermeer/EVURLCache
https://github.com/sgr-ksmt/PDFGenerator
https://github.com/lojals/JOEmojiableBtn
https://github.com/e-sites/Bluetonium
https://github.com/kiavashfaisali/KFSwiftImageLoader
https://github.com/AlexLittlejohn/ALTextInputBar
https://github.com/DyCI/dyci-main
https://github.com/buzzfeed/mattress
https://github.com/orta/chairs
https://github.com/chasseurmic/TWRCharts
https://github.com/knn90/Switcher
https://github.com/plu/parallel_ios_tests
https://github.com/Ramotion/circle-menu
https://github.com/xhacker/TagListView
https://github.com/Mortgy/MGCacheManager
https://github.com/rob-nash/Fetcher
https://github.com/hyperoslo/Presentation
https://github.com/mutualmobile/MMBarricade
https://github.com/thoughtbot/liftoff
https://github.com/yeahdongcn/UIColor-Hex-Swift
https://github.com/osteslag/Changeset
https://github.com/neonichu/Azkaban
https://github.com/rFlex/SCRecorder
https://github.com/PhilippeBoisney/Swift-Slide-Menu
https://github.com/swiftsocket/SwiftSocket
https://github.com/szweier/SZMentionsSwift
https://github.com/czechboy0/Socks
https://github.com/xhacker/TEAChart
https://github.com/icanzilb/EasyAnimation
https://github.com/nvzqz/Roman
https://github.com/ypresto/SwiftLintXcode
https://github.com/bemindinteractive/SwiftSortedList
https://github.com/VojtaStavik/Trackable
https://github.com/conradev/BlockTypeDescription
https://github.com/0x73/SDevBootstrapButton
https://github.com/Hearst-DD/ObjectMapper
https://github.com/zenangst/Tailor
https://github.com/elliottminns/blackfish
https://github.com/ReactiveKit/ReactiveKit
https://github.com/romaonthego/RESideMenu
https://github.com/evermeer/AlamofireOauth2
https://github.com/SwiftKitz/Storez
https://github.com/hackiftekhar/IQDropDownTextField
https://github.com/AhmettKeskin/InteractivePlayerView
https://github.com/AliThink/HorizontalProgress
https://github.com/stripe/stripe-ios
https://github.com/zats/Tribute
https://github.com/dzenbot/XCSnippetr
https://github.com/rentzsch/mogenerator
https://github.com/trawor/XToDo
https://github.com/szweier/SZMentions
https://github.com/dustturtle/RealReachability
https://github.com/benzguo/MusicKit
https://github.com/onevcat/VVDocumenter-Xcode
https://github.com/groue/GRDB.swift
https://github.com/kean/DFImageManager
https://github.com/prolificinteractive/swift-style-guide
https://github.com/facebook/FBMemoryProfiler
https://github.com/nvzqz/RandomKit/
https://github.com/angelvasa/AVXCAssets-Generator
https://github.com/facebook/Shimmer
https://github.com/brynbellomy/FlatUIColors
https://github.com/CosmicMind/Graph
https://github.com/jverdi/JVFloatLabeledTextField
https://github.com/indragiek/MarkdownTextView
https://github.com/Vinodh-G/ParallaxTableViewHeader
https://github.com/Ramotion/navigation-stack
https://github.com/AlexLittlejohn/ALThreeCircleSpinner
https://github.com/KevinCoble/AIToolbox
https://github.com/Alamofire/AlamofireNetworkActivityIndicator
https://github.com/rickytan/RTImageAssets
https://github.com/nst/STTwitter
https://github.com/square/PonyDebugger
https://github.com/szk-atmosphere/URLEmbeddedView
https://github.com/liyong03/YLGIFImage
https://github.com/Grouper/FlatUIKit
https://github.com/insanoid/SwiftyJSONAccelerator
https://github.com/zalando/MapleBacon
https://github.com/facebook/FBNotifications
https://github.com/hsavit1/Awesome-Swift-Education
https://github.com/yannickl/Splitflap
https://github.com/k0nserv/luft
https://github.com/facebook/AsyncDisplayKit/
https://github.com/rasmusth/BluetoothKit
https://github.com/lkzhao/ElasticTransition
https://github.com/square/Aardvark/
https://github.com/mdiep/MMMarkdown
https://github.com/wiruzx/QuickJump
https://github.com/SwiftKitz/Notificationz
https://github.com/kasei/SwiftRegex
https://github.com/Velhotes/Vinyl
https://github.com/John-Lluch/SWRevealViewController
https://github.com/Boris-Em/BEMCheckBox#sample-app
https://github.com/Daniel1of1/CSwiftV
https://github.com/dealforest/Cichlid
https://github.com/shyambhat/InstagramKit
https://github.com/honghaoz/Loggerithm
https://github.com/CoderMJLee/MJRefresh
https://github.com/yannickl/DynamicColor
https://github.com/soyersoyer/SwCrypt
https://github.com/kirualex/SwiftyGif
https://github.com/szk-atmosphere/MisterFusion
https://github.com/hyperoslo/Hue
https://github.com/Raizlabs/RZTransitions
https://github.com/shoheiyokoyama/SYBlinkAnimationKit
https://github.com/gemr/GTrack
https://github.com/KyoheiG3/SimpleAlert
https://github.com/dzenbot/DZNEmptyDataSet
https://github.com/rakaramos/OnOffButton
https://github.com/hossamghareeb/SwiftySideMenu
https://github.com/andrealufino/Deviice
https://github.com/fpillet/NSLogger
https://github.com/KrauseFx/TSMessages
https://github.com/ytakzk/Fusuma
https://github.com/zendesk/zendesk_sdk_ios
https://github.com/relatedcode/ProgressHUD
https://github.com/ibireme/YYCache
https://github.com/maxkonovalov/MKGradientView
https://github.com/supermarin/ObjectiveRecord
https://github.com/ra1028/RAReorderableLayout
https://github.com/schwa/Swift-Community-Best-Practices/
https://github.com/jensmeder/DarkLightning
https://github.com/evermeer/AlamofireXmlToObjects
https://github.com/joeldev/JLRoutes
https://github.com/hyperoslo/Form
https://github.com/b3ll/SwiftyGestureRecognition
https://github.com/square/Valet
https://github.com/raywenderlich/objective-c-style-guide
https://github.com/eure/Animo
https://github.com/malcommac/SwiftDate
https://github.com/RuiAAPeres/OptionalExtensions
https://github.com/AFNetworking/AFNetworkActivityLogger
https://github.com/duemunk/Async
https://github.com/qutheory/fluent
https://github.com/hanton/YXTMotionView
https://github.com/SwiftyJSON/SwiftyJSON
https://github.com/telly/TLYShyNavBar
https://github.com/kitasuke/PagingMenuController
https://github.com/CanvasPod/Canvas
https://github.com/Cee/pangu.objective-c
https://github.com/Skyscanner/SkyFloatingLabelTextField
https://github.com/shushutochako/IntervalSlider
https://github.com/xmartlabs/XLForm
https://github.com/Nordeus/pushkin
https://github.com/samvermette/SVPullToRefresh
https://github.com/codestergit/SweetAlert-iOS
https://github.com/MoZhouqi/KMNavigationBarTransition
https://github.com/vadymmarkov/Fashion
https://github.com/johnlui/Pitaya
https://github.com/nickoneill/PermissionScope
https://github.com/mrackwitz/MRProgress
https://github.com/szk-atmosphere/SAHistoryNavigationViewController
https://github.com/SergioChan/SCTrelloNavigation
https://github.com/nathankot/NKMultipeer
https://github.com/JellyDevelopment/JDSlider
https://github.com/raywenderlich/swift-style-guide
https://github.com/hanton/HTYTextField
https://github.com/LoganWright/Genome
https://github.com/badoo/Chatto
https://github.com/nixzhu/KeyboardMan
https://github.com/ibireme/YYModel
https://github.com/EddyBorja/MLPAutoCompleteTextField
https://github.com/ariok/BWWalkthrough
https://github.com/ashleymills/Reachability.swift
https://github.com/lgaches/BeaconEmitter
https://github.com/thoughtbot/Delta
https://github.com/kattrali/cocoapods-xcode-plugin
https://github.com/DeskConnect/SBShortcutMenuSimulator
https://github.com/kasper-lahti/PageControl
https://github.com/neonichu/Chocolat
https://github.com/delba/Tactile
https://github.com/Instrument/Vicinity
https://github.com/jaydee3/JDStatusBarNotification
https://github.com/12Rockets/VolumeControl
https://github.com/kitschpatrol/KPRunEverywhereXcodePlugin
https://github.com/BoltsFramework/Bolts-Swift
https://github.com/nicklockwood/iCarousel
https://github.com/IngeoSDK/ingeo-ios-sdk
https://github.com/goktugyil/QorumLogs
https://github.com/krzysztofzablocki/KZAsserts
https://github.com/devinross/tapkulibrary
https://github.com/vangelov/VLDContextSheet
https://github.com/electrickangaroo/Lightning-Table
https://github.com/relatedcode/ParseAlternatives
https://github.com/ifitdoesntwork/DAExpandAnimation
https://github.com/jflinter/Dwifft
https://github.com/AliSoftware/OHHTTPStubs
https://github.com/TimOliver/TOCropViewController
https://github.com/suzuki-0000/CountdownLabel
https://github.com/darkcl/SocialLib
https://github.com/monoqlo/ExpandingMenu
https://github.com/rs/SDWebImage
https://github.com/recisio/IncrementableLabel
https://github.com/Flipboard/FLAnimatedImage
https://github.com/noppefoxwolf/StackPageView
https://github.com/noppefoxwolf/FlowBarButtonItem
https://github.com/ruslanskorb/RSKPlaceholderTextView
https://github.com/InderKumarRathore/DeviceGuru/
https://github.com/fuzz-productions/CoreDataDandy
https://github.com/carekit-apple/CareKit
https://github.com/prolificinteractive/Caishen
https://github.com/CocoaLumberjack/CocoaLumberjack
https://github.com/hyperoslo/Keychain
https://github.com/Karumi/BothamUI
https://github.com/Gurpartap/AESCrypt-ObjC
https://github.com/m1entus/MZFormSheetPresentationController
https://github.com/RishabhTayal/Fastlane-Plugin
https://github.com/AlexLittlejohn/ALRadialMenu
https://github.com/paulofaria/Aeon
https://github.com/fruitcoder/ReplaceAnimation
https://github.com/Glow-Inc/GLCalendarView
https://github.com/bitstadium/HockeyKit
https://github.com/kylef/Commander
https://github.com/Ramotion/folding-cell
https://github.com/stringcode86/SnowGlobeFramework
https://github.com/cemolcay/CategorySliderView
https://github.com/hkellaway/Gloss
https://github.com/filipstefansson/AutocompleteField
https://github.com/Alecrim/AlecrimCoreData
https://github.com/slackhq/SlackTextViewController
https://github.com/foursquare/FSNetworking
https://github.com/josejuanqm/Ody
https://github.com/WeltN24/Carlos
https://github.com/Eclair/CircleProgressBar
https://github.com/pdcgomes/XCActionBar
https://github.com/erichoracek/Motif
https://github.com/NYTimes/objective-c-style-guide
https://github.com/ArtSabintsev/Zephyr
https://github.com/ibireme/YYText
https://github.com/robb/Cartography
https://github.com/honghaoz/Ji
https://github.com/recruit-mtl/EXTView
https://github.com/AliSoftware/SwiftGen
https://github.com/betacraft/AFNetworkingHelper
https://github.com/vadymmarkov/When
https://github.com/delba/Permission
https://github.com/route-me/route-me
https://github.com/davidcairns/DePict
https://github.com/Ramotion/adaptive-tab-bar
https://github.com/symentis/Palau
https://github.com/Citrrus/BlurryModalSegue
https://github.com/hyperoslo/Compass
https://github.com/ortuman/SwiftForms
https://github.com/jayway/CWCoreData
https://github.com/ishkawa/APIKit
https://github.com/teodorpatras/Jukebox
https://github.com/marmelroy/Localize-Swift
https://github.com/CosmicMind/Algorithm
https://github.com/evernote/evernote-cloud-sdk-ios
https://github.com/Mantle/Mantle
https://github.com/vfr/Reader
https://github.com/jessesquires/JSQMessagesViewController
https://github.com/indragiek/Ares
https://github.com/nixzhu/Proposer
https://github.com/mrugrajsinh/MVMaterialView
https://github.com/Yalantis/EatFit
https://github.com/sprint84/ProgressButton
https://github.com/facebook/facebook-ios-sdk
https://github.com/clusterinc/ClusterPrePermissions
https://github.com/bryx-inc/BRYXBanner
https://github.com/davidlondono/PlayerView
https://github.com/rob-nash/InfiniteScrollKit
https://github.com/carsonperrotti/CNPPopupController
https://github.com/alikaragoz/DaisyChain
https://github.com/ytakzk/Hokusai
https://github.com/michaeljbishop/NGAParallaxMotion
https://github.com/stig/json-framework
https://github.com/JustHTTP/Just
https://github.com/Yalantis/GuillotineMenu
https://github.com/ibireme/YYDispatchQueuePool
https://github.com/krzysztofzablocki/crafter
https://github.com/matthewcheok/Fluent
https://github.com/evnaz/ENSwiftSideMenu
https://github.com/comyarzaheri/TuningFork
https://github.com/GabrielAlva/Cool-iOS-Camera
https://github.com/JohnSundell/Wrap
https://github.com/manavgabhawala/CocoaMultipeer
https://github.com/nnhubbard/ZSSRichTextEditor
https://github.com/huytd/swift-http
https://github.com/diwu/DWURecyclingAlert
https://github.com/nixzhu/MonkeyKing
https://github.com/danthorpe/Money
https://github.com/hallas/agent
https://github.com/shjborage/Reveal-Plugin-for-Xcode
https://github.com/kean/Nuke
https://github.com/fhsjaagshs/FHSTwitterEngine
https://github.com/SnapKit/SnapKit
https://github.com/nbwar/NWCalendarView
https://github.com/shu223/AnimatedTransitionGallery
https://github.com/delba/JASON
https://github.com/MatejBalantic/MBAutoGrowingTextView
https://github.com/kishikawakatsumi/UICKeyChainStore
https://github.com/eure/RealmIncrementalStore
https://github.com/fastlane/fastlane
https://github.com/johnno1962/Dynamo
https://github.com/MatthewYork/MYBlurIntroductionView
https://github.com/onmyway133/XcodeWay
https://github.com/lzwjava/Reveal-In-Github
https://github.com/gonzalezreal/Groot
https://github.com/Wasappli/WAAppRouting
https://github.com/BalestraPatrick/ValueStepper
https://github.com/JunichiT/JTMaterialSwitch
https://github.com/cezheng/PySwiftyRegex
https://github.com/nghialv/Transporter
https://github.com/ipraba/EPSignature
https://github.com/nixzhu/Coolie
https://github.com/kubatru/JTChartView
https://github.com/typelift/Swiftz
https://github.com/honcheng/iOSPlot
https://github.com/zoonooz/ZFRippleButton
https://github.com/bradjasper/radialmenu
https://github.com/Goles/GGTabBar
https://github.com/mattt/SkyLab
https://github.com/Anviking/Decodable
https://github.com/jankuca/swm
https://github.com/Overcoat/Overcoat
https://github.com/mattt/Euler
https://github.com/josejuanqm/Silo
https://github.com/NZN/NZAlertView
https://github.com/coshx/caravel
https://github.com/PrideChung/FontAwesomeKit
https://github.com/rawrjustin/Bridge
https://github.com/zakkhoyt/VWWPermissionKit
https://github.com/Proxitee/iOS-SDK
https://github.com/DanisFabric/RainbowNavigation
https://github.com/jancassio/SweetHMAC
https://github.com/Marxon13/M13ProgressSuite
https://github.com/hanton/CopyIssue-Xcode-Plugin
https://github.com/sudeepag/SAConfettiView
https://github.com/recisio/AudioPlayerSwift
https://github.com/floriankugler/FLKAutoLayout
https://github.com/stefanceriu/SCXcodeSwitchExpander
https://github.com/Alterplay/APValidators
https://github.com/mpw/MPWDrawingContext
https://github.com/JeromeTan1997/LocationPicker
https://github.com/marmelroy/Format
https://github.com/jessesquires/GrandSugarDispatch
https://github.com/kishikawakatsumi/KeychainAccess
https://github.com/kuler90/RKTagsView
https://github.com/orta/ARAnalytics
https://github.com/specta/specta
https://github.com/dcordero/Rubustrings
https://github.com/Carthage/ReactiveTask
https://github.com/maxkonovalov/MKDropdownMenu
https://github.com/icepat/ICETutorial
https://github.com/aschuch/AwesomeCache
https://github.com/metasmile/git-xcp
https://github.com/ibireme/YYWebImage
https://github.com/bizz84/SwiftyStoreKit
https://github.com/orta/cocoapods-keys
https://github.com/iosdevzone/IDZSwiftCommonCrypto
https://github.com/SwiftBond/Bond
https://github.com/bryankeller/BLKFlexibleHeightBar
https://github.com/lorentey/BTree
https://github.com/goktugyil/EZLoadingActivity
https://github.com/cute/DLWBouncyView
https://github.com/evan-liu/FormationLayout
https://github.com/JonFir/TimeLord
https://github.com/metasmile/ai2app
https://github.com/mariohahn/MHVideoPhotoGallery
https://github.com/ksuther/KSImageNamed-Xcode
https://github.com/joshaber/SwiftBox
https://github.com/Polidea/RxBluetoothKit
https://github.com/xmartlabs/XLActionController
https://github.com/marcoarment/FCModel
https://github.com/SwiftKitz/Datez
https://github.com/fdzsergio/Reductio
https://github.com/harlanhaskins/Punctual.swift
https://github.com/MLSDev/TRON
https://github.com/fastred/MotionBlur
https://github.com/epam/road-ios-framework
https://github.com/thellimist/SwiftRandom
https://github.com/marketplacer/Cosmos
https://github.com/mac-cain13/R.swift
https://github.com/warchimede/RangeSlider
https://github.com/ruipfcosta/SwiftyWalkthrough
https://github.com/michaeltyson/TPKeyboardAvoiding
https://github.com/Weebly/OrderedSet
https://github.com/tumblr/TMTumblrSDK
https://github.com/mikaoj/EnigmaKit
https://github.com/samhann/Every.swift
https://github.com/alsedi/AnimatedSwitch
https://github.com/tid-kijyun/Kanna
https://github.com/cemolcay/PullToRefreshCoreText
https://github.com/ReactiveCocoa/ReactiveCocoa
https://github.com/citymapper/CMMapLauncher
https://github.com/sharplet/Regex
https://github.com/qiniu/happy-dns-objc
https://github.com/tommypeps/JRSplitVC
https://github.com/BoltsFramework/Bolts-ObjC
https://github.com/manuelescrig/MEVFloatingButton
https://github.com/PureSwift/SwiftFoundation
https://github.com/tumtumtum/StreamingKit
https://github.com/aschuch/StatefulViewController
https://github.com/Quick/Quick
https://github.com/ibireme/YYImage
https://github.com/sandorgyulai/InAppFramework
https://github.com/radex/SwiftyUserDefaults
https://github.com/mxcl/YOLOKit
https://github.com/SwiftyBeaver/SwiftyBeaver
https://github.com/mineschan/MZTimerLabel
https://github.com/daisuke0131/ViewMonitor
https://github.com/500px/greedo-layout-for-ios
https://github.com/Inspirato/SwiftPhotoGallery
https://github.com/mustafaibrahim989/MIBadgeButton-Swift
https://github.com/mokemokechicken/CrashMonkey
https://github.com/uraimo/Awesome-Swift-Playgrounds
https://github.com/aryaxt/ScrollPager
https://github.com/tomkowz/Swifternalization
https://github.com/marksands/Aviator
https://github.com/toshi0383/TVMLKitchen
https://github.com/l0gg3r/LGBluetooth
https://github.com/herinkc/HTPressableButton
https://github.com/tomaz/appledoc
https://github.com/pinterest/PINRemoteImage
https://github.com/Isuru-Nanayakkara/Reach
https://github.com/meismyles/SwiftWebVC
https://github.com/seedante/CardAnimation
https://github.com/indragiek/SwiftAutoLayout
https://github.com/MengTo/Spring
https://github.com/squimer/DatePickerDialog-iOS-Swift
https://github.com/nickoneill/Pantry
https://github.com/box/box-ios-sdk
https://github.com/jonkykong/SideMenu
https://github.com/ArtSabintsev/FontBlaster
https://github.com/xyfeng/XYPieChart
https://github.com/hyperoslo/ImagePicker
https://github.com/ReactKit/SwiftTask
https://github.com/cxa/MenuItemKit
https://github.com/KnuffApp/Knuff
https://github.com/bahlo/SwiftGif
https://github.com/SwiftStudies/SmarkDown
https://github.com/hyperoslo/Sugar
https://github.com/prosumma/CoreDataQueryInterface
https://github.com/kasketis/netfox
https://github.com/ealeksandrov/EAIntroView
https://github.com/kciter/KCHorizontalDial
https://github.com/Flipboard/FLEX
https://github.com/RxSwiftCommunity/RxAlamofire
https://github.com/ninjaprox/NVActivityIndicatorView
https://github.com/abbiio/iosdk
https://github.com/zhuhuihuihui/EChart
https://github.com/shu223/Pulsator
https://github.com/kevinzhow/PNChart
https://github.com/naoyashiga/RPLoadingAnimation
https://github.com/morizotter/KeyboardObserver
https://github.com/alexdrone/FlexboxLayout
https://github.com/Azuritul/AZExpandableIconListView
https://github.com/SVProgressHUD/SVProgressHUD
https://github.com/AFNetworking/AFNetworking
https://github.com/Zepo/MLeaksFinder
https://github.com/CardinalNow/iOS-CircleProgressView
https://github.com/andreacremaschi/GEOSwift
https://github.com/hyperoslo/Whisper
https://github.com/gskbyte/GSKStretchyHeaderView
https://github.com/ibireme/YYKeyboardManager
https://github.com/oarrabi/Swiftline
https://github.com/raulriera/AuthenticationViewController
https://github.com/0x73/SDevFlatColors
https://github.com/alskipp/ASValueTrackingSlider
https://github.com/KittenYang/GooeyTabbar
https://github.com/Aufree/Hodor
https://github.com/liuzhiyi1992/ZYThumbnailTableView
https://github.com/ijoshsmith/abandoned-strings
https://github.com/neonichu/BBUDebuggerTuckAway
https://github.com/qiniu/iOS-netdiag
https://github.com/tarunon/AnyObjectConvertible
https://github.com/qfish/XAlign
https://github.com/JellyDevelopment/JDAnimationKit
https://github.com/JakeLin/IBAnimatable
https://github.com/thoughtbot/Argo
https://github.com/delba/TextAttributes
https://github.com/nomad/dubai
https://github.com/Alamofire/AlamofireImage
https://github.com/Yu-w/WYMaterialButton
https://github.com/aleph7/Upsurge
https://github.com/CEWendel/SWTableViewCell
https://github.com/JellyDevelopment/JDSwiftAvatarProgress
https://github.com/me-abhinav/NumberMorphView
https://github.com/MailCore/mailcore2
https://github.com/Yalantis/DisplaySwitcher
https://github.com/intuit/AnimationEngine
https://github.com/ruslanskorb/RSKGrowingTextView
https://github.com/gmertk/GMStepper
https://github.com/teodorpatras/EasyTipView
https://github.com/shu223/PulsingHalo
https://github.com/naoty/Timepiece
https://github.com/tejas-ardeshna/TJTextField
https://github.com/Azuritul/AZDropdownMenu
https://github.com/robb/Underscore.m
https://github.com/kif-framework/KIF
https://github.com/ryanfowler/SwiftData
https://github.com/ArtSabintsev/Solarized-Dark-for-Xcode/
https://github.com/tptee/Oriole
https://github.com/insanoid/CleanHeaders-Xcode
https://github.com/Yalantis/FoldingTabBar.iOS
https://github.com/facebook/chisel
https://github.com/gautier-gdx/Hexacon
https://github.com/Zewo/Zewo
https://github.com/github/objective-c-style-guide
https://github.com/mxcl/PromiseKit
https://github.com/0x73/SDevCircleButton
https://github.com/audiokit/AudioKit
https://github.com/SimonFairbairn/SwiftyMarkdown
https://github.com/rugheid/Swift-MathEagle
https://github.com/kiwi-bdd/Kiwi
https://github.com/ezescaruli/ESTabBarController
https://github.com/wxxsw/GSAlert
https://github.com/icoco/OctopusKit
https://github.com/gontovnik/DGElasticPullToRefresh
https://github.com/AliSoftware/Reusable
https://github.com/xmartlabs/XLPagerTabStrip
https://github.com/ThilinaHewagama/AutoIndentWithSave
https://github.com/yopeso/Taylor
https://github.com/zjmdp/GoAutoSlideView
https://github.com/BradLarson/GPUImage2
https://github.com/questbeat/Lin
https://github.com/nestproject/Frank
https://github.com/mapbox/mapbox-gl-native
https://github.com/andreamazz/BubbleTransition
https://github.com/button/DeepLinkKit
https://github.com/nvzqz/FileKit
https://github.com/daltoniam/Starscream
https://github.com/coolbeet/CBStoreHouseRefreshControl
https://github.com/devinross/curry
https://github.com/mobileplayer/mobileplayer-ios
https://github.com/marcelofabri/BigBrother
https://github.com/mamaral/Facade
https://github.com/s4cha/Arrow
https://github.com/sachinkesiraju/UberKit
https://github.com/Alterplay/APAddressBook
https://github.com/intuit/LocationManager
https://github.com/ice3-software/between-kit
https://github.com/jedisct1/swift-sodium
https://github.com/tadija/AEAppVersion
https://github.com/merrickp/JumpMarks
https://github.com/meiwin/NgKeyboardTracker
https://github.com/gdawg/uiimage-dsp
https://github.com/FuzzyAutocomplete/FuzzyAutocompletePlugin
https://github.com/hyperoslo/OhMyAuth
https://github.com/storehouse/Advance
https://github.com/danielgindi/Charts
https://github.com/ninjinkun/NJKWebViewProgress
https://github.com/Flinesoft/BartyCrouch
https://github.com/Cocoanetics/DTRichTextEditor
https://github.com/Tintenklecks/IBDelegateCodesippets
https://github.com/layerhq/Atlas-iOS
https://github.com/PerfectlySoft/Perfect
https://github.com/omz/ColorSense-for-Xcode
https://github.com/cdzombak/CDZPinger
https://github.com/igormatyushkin014/Sensitive
https://github.com/Cocoanetics/Kvitto
https://github.com/collinhundley/APCustomBlurView
https://github.com/hyperoslo/Brick
https://github.com/marmelroy/PeekPop
https://github.com/project-imas/encrypted-core-data
https://github.com/DroidsOnRoids/MPParallaxView
https://github.com/tdginternet/TGCameraViewController
https://github.com/wircho/ICanHas
https://github.com/jpsim/SourceKitten
https://github.com/zenorocha/dracula-theme
https://github.com/IFTTT/JazzHands
https://github.com/andreamazz/UITextField-Shake
https://github.com/SwiftKit/Cuckoo
https://github.com/immrss/SSVideoPlayer
https://github.com/szk-atmosphere/SAInboxViewController
https://github.com/toannt/Hamburger-Menu-Button
https://github.com/hughbe/phone-number-picker
https://github.com/johnezang/JSONKit
https://github.com/johnno1962/Refactorator
https://github.com/ra1028/Former
https://github.com/JunichiT/JTFadingInfoView
https://github.com/heyalexchoi/Giphy-iOS
https://github.com/spotify/SPTDataLoader
https://github.com/AgileBits/onepassword-app-extension
https://github.com/nixzhu/Navi
https://github.com/xmartlabs/Eureka
https://github.com/drinkius/flowerchart
https://github.com/muukii/NextGrowingTextView
https://github.com/kaandedeoglu/Shark
https://github.com/orta/You-Can-Do-It
https://github.com/emaloney/CleanroomLogger
https://github.com/gizmoboy7/VCFloatingActionButton
https://github.com/joemasilotti/UI-Testing-Cheat-Sheet
https://github.com/jathu/UIImageColors
https://github.com/paulrolfe/PARTagPicker
https://github.com/TouchCode/TouchJSON
https://github.com/vikmeup/SCLAlertView-Swift
https://github.com/Guidebook/gbkui-button-progress-view
https://github.com/supermarin/ObjectiveSugar
https://github.com/devinross/curry-fire
https://github.com/croath/UIImageView-BetterFace-Swift
https://github.com/iosphere/ISHPermissionKit
https://github.com/hackiftekhar/IQKeyboardManager
https://github.com/Eke/EMEmojiableBtn
https://github.com/andreamazz/AMPopTip
https://github.com/devxoul/URLNavigator
https://github.com/futurice/ios-good-practices
https://github.com/Yalantis/FastEasyMapping
https://github.com/ccgus/fmdb
https://github.com/gh-unit/gh-unit
https://github.com/0xced/XCDYouTubeKit
https://github.com/zats/BrowserTV
https://github.com/dingbat/nsrails
https://github.com/EvgenyKarkan/EKAlgorithms
https://github.com/hodinkee/alexander
https://github.com/FabrizioBrancati/BFKit-Swift
https://github.com/malcommac/SwiftLocation
https://github.com/marmelroy/FileBrowser
https://github.com/mattt/Surge
https://github.com/facebook/pop
https://github.com/arn00s/cariocamenu
https://github.com/molon/MLAutoReplace
https://github.com/soffes/sskeychain
https://github.com/waynewbishop/SwiftStructures
https://github.com/OliverLetterer/SLRESTfulCoreData
https://github.com/kevin0571/STPopup
https://github.com/yeahdongcn/RSBarcodes_Swift
https://github.com/hanton/HTY360Player
https://github.com/alexdrone/ios-fontawesome
https://github.com/roytang121/Akaibu-NSUserDefaults
https://github.com/jpsim/PeerKit
https://github.com/delba/Log
https://github.com/melvitax/AFDateHelper
https://github.com/Ekhoo/Loader
https://github.com/izqui/Taylor
https://github.com/apple/swift-package-manager
https://github.com/Carthage/Carthage
https://github.com/evgenyneu/sound-fader-ios
https://github.com/callumboddy/CBZSplashView
https://github.com/tadija/AEXML
https://github.com/isair/ManualLayout
https://github.com/robbiehanson/CocoaHTTPServer
https://github.com/matbeich/StickyCollectionView-Swift
https://github.com/markohlebar/Peckham
https://github.com/CezaryKopacz/CKWaveCollectionViewTransition
https://github.com/LlamaKit/LlamaKit
https://github.com/brynbellomy/Funky
https://github.com/kciter/KCFloatingActionButton
https://github.com/socketio/socket.io-client-swift
https://github.com/vimeo/VIMVideoPlayer
https://github.com/vadymmarkov/Fakery
https://github.com/agilie/dribbble-ios-sdk
https://github.com/marmelroy/PhoneNumberKit
https://github.com/soffes/diff
https://github.com/mtonio91/AMSmoothAlert
https://github.com/martydill/ios-queryable
https://github.com/icodeforlove/Colors
https://github.com/pjebs/Obfuscator-iOS
https://github.com/Aralekk/VR_Toolkit_iOS
https://github.com/pkluz/PKHUD
https://github.com/jaredsinclair/JTSImageViewController
https://github.com/entotsu/PullToBounce
https://github.com/andreamazz/UIView-draggable
https://github.com/trifl/Chirp
https://github.com/goktugyil/EZSwiftExtensions
https://github.com/peterprokop/SwiftOverlays
https://github.com/phimage/Prephirences
https://github.com/evermeer/EVReflection
https://github.com/mattt/Ono
https://github.com/realm/SwiftLint
https://github.com/Jawbone/JBChartView
https://github.com/chockenberry/Provisioning
https://github.com/rsattar/Voucher
https://github.com/RxSwiftCommunity/RxMultipeer
https://github.com/glenyi/FloatRatingView
https://github.com/troystribling/BlueCap
https://github.com/marmelroy/Zip
https://github.com/s4cha/ws
https://github.com/cossacklabs/themis
https://github.com/tumblr/XExtensionItem
https://github.com/wangjwchn/JWAnimatedImage
https://github.com/marmelroy/TVButton
https://github.com/madebybowtie/FlagKit
https://github.com/rheinfabrik/Heimdallr.swift
https://github.com/zwaldowski/BlocksKit
https://github.com/venmo/venmo-ios-sdk
https://github.com/pixyzehn/MediumMenu
https://github.com/takebayashi/swiftra
https://github.com/nicklockwood/iRate
https://github.com/appfoundry/Reliant
https://github.com/PhilippeBoisney/AlertOnboarding
https://github.com/morizotter/SwiftFontName
https://github.com/daltoniam/DCAnimationKit
https://github.com/TakeScoop/SwiftyRSA
https://github.com/aws/aws-sdk-ios
https://github.com/mrugrajsinh/MVAutocompletePlaceSearchTextField
https://github.com/cookpad/puree-ios
https://github.com/necolt/Swifton
https://github.com/terwanerik/Retini
https://github.com/omergul123/LLSimpleCamera
https://github.com/PerfectFreeze/PFStepper
https://github.com/ruslanskorb/RSKImageCropper
https://github.com/mattt/Orbiter
https://github.com/RamonGilabert/Morgan
https://github.com/czechboy0/SwiftSafe
https://github.com/Sephiroth87/Crayons
https://github.com/QueryKit/QueryKit
https://github.com/tadija/AERecord
https://github.com/MedvedevMax/MMSegmentSlider
https://github.com/filipealva/PickerView
https://github.com/modocache/MDCSwipeToChoose
https://github.com/hyperoslo/Sync
https://github.com/thii/FontAwesome.swift
https://github.com/kitasuke/GoogleMaterialIconFont
https://github.com/jondot/blade
https://github.com/krzysztofzablocki/KZPlayground
https://github.com/okmr-d/DOAlertController
https://github.com/zekunyan/TTGEmojiRate
https://github.com/Lightningkite/LKAlertController
https://github.com/matthewcheok/JSONCodable
https://github.com/mattcomi/ReflectedStringConvertible
https://github.com/TransitApp/SVWebViewController
https://github.com/HookahSwift/Hookah
https://github.com/hossamghareeb/Facebook-POP-Tutorial
https://github.com/jackyzh/awesome-ios-animation
https://github.com/jspahrsummers/libextobjc
https://github.com/hollance/swift-algorithm-club
https://github.com/lexrus/LTMorphingLabel
https://github.com/Alamofire/Alamofire
https://github.com/twitter/twitter-text
https://github.com/viniciusmo/VMaskTextField
https://github.com/johnno1962/Remote
https://github.com/larsxschneider/ShowInGitHub
https://github.com/SergioChan/SCNavigationControlCenter
https://github.com/devxoul/Then
https://github.com/thii/Notie
https://github.com/Jintin/transai
https://github.com/Skyscanner/Dixie
https://github.com/wangjwchn/MetalAcc
https://github.com/magicalpanda/MagicalRecord
https://github.com/Aralekk/simple360player_iOS
https://github.com/robbiehanson/XMPPFramework
https://github.com/syedhali/EZAudio
https://github.com/GnosisHub/GHWalkThrough
https://github.com/kciter/KCSelectionDialog
https://github.com/pronebird/UIScrollView-InfiniteScroll
https://github.com/Oyvindkg/swiftydb
https://github.com/yannickl/DynamicButton
https://github.com/johnlui/SwiftNotice
https://github.com/dasmer/EmojiKit
https://github.com/seedco/StackViewController
https://github.com/cwRichardKim/RKDropdownAlert
https://github.com/WenchaoD/FSCalendar
https://github.com/tadija/AEConsole
https://github.com/JohnEstropia/CoreStore
https://github.com/jmascia/KLCPopup
https://github.com/apparentsoft/ReactiveCoreData
https://github.com/yankodimitrov/SwiftPasscodeLock
https://github.com/DianQK/TransitionTreasury
https://github.com/patrickreynolds/MagicMove
https://github.com/Moya/Moya
https://github.com/wojteklu/Watchdog
https://github.com/RobertAPhillips/UIView_2_PDF
https://github.com/yuhua-chen/MCLog
https://github.com/devxoul/CocoaSeeds
https://github.com/mattt/AnimatedGIFImageSerialization
https://github.com/kylef/swiftenv
https://github.com/soffes/SSDataKit
https://github.com/naoty/SwiftCSV
https://github.com/eure/AppVersionMonitor
https://github.com/IBM-Swift/Kitura
https://github.com/chiahsien/AutoHighlightSymbol
https://github.com/piemonte/PBJVision
https://github.com/gauravkatoch007/banana
https://github.com/vadymmarkov/MARKRangeSlider
https://github.com/square/SocketRocket
https://github.com/paypal/PayPal-iOS-SDK
https://github.com/google/EarlGrey
https://github.com/RxSwiftCommunity/RxRealm
https://github.com/zats/PreciseCoverage
https://github.com/robrix/Prelude
https://github.com/netguru/ResponseDetective
https://github.com/paulsamuels/SBConstants
https://github.com/CameronBanga/iOS-Developer-and-Designer-Interview-Questions
https://github.com/limejelly/Backlight-for-XCode
https://github.com/contentful-labs/Concorde/
https://github.com/andreamazz/GearRefreshControl
https://github.com/mwaterfall/MWPhotoBrowser
https://github.com/TBXark/TKRubberIndicator
https://github.com/alexbw/novocaine
https://github.com/ykyouhei/KYNavigationProgress
https://github.com/SwiftKitz/Appz
https://github.com/rob-nash/CollapsableTableKit
https://github.com/JohnEstropia/GCDKit
https://github.com/neonichu/BBUFullIssueNavigator
https://github.com/cjwirth/RichEditorView
https://github.com/krzysztofzablocki/KZBootstrap
https://github.com/bennyguitar/Colours
https://github.com/marcinolawski/StoryboardMerge
https://github.com/frozon/passbook
https://github.com/dzenbot/XCSwiftr
https://github.com/didierbrun/DBPathRecognizer
https://github.com/SnapKit/Masonry
https://github.com/azizuysal/NetKit
https://github.com/Cleveroad/CRParticleEffect
https://github.com/elbryan/FFCircularProgressView
https://github.com/hyperoslo/Cache
https://github.com/Boris-Em/BEMSimpleLineGraph
https://github.com/mamaral/Neon
https://github.com/shushutochako/CircleSlider
https://github.com/fastred/ReflectableEnum
https://github.com/akosma/SwiftMoment
https://github.com/KeepSafe/Switchboard
https://github.com/chasseurmic/TWRDownloadManager
https://github.com/Palleas/NaughtyKeyboard
https://github.com/thanegill/RxOptional
https://github.com/nicklockwood/AsyncImageView
https://github.com/jatoben/CommandLine
https://github.com/intentkit/IntentKit
https://github.com/OAuthSwift/OAuthSwift
https://github.com/naoyashiga/RPModalGestureTransition
https://github.com/SvenTiigi/STLocationRequest
https://github.com/ReSwift/ReSwift
https://github.com/sunshinejr/RxPermission
https://github.com/neerajbaid/NBEmojiSearchView
https://github.com/jamztang/CSStickyHeaderFlowLayout
https://github.com/krzysztofzablocki/KZLinkedConsole
https://github.com/s4cha/then
https://github.com/scottrhoyt/SwiftyTextTable
https://github.com/onevcat/Rainbow
https://github.com/phimage/Arithmosophi
https://github.com/joshualat/Pluralize.swift
https://github.com/psy2k/NMPopUpView
https://github.com/cwRichardKim/RKNotificationHub
https://github.com/crushlovely/Amaro
https://github.com/Yoseob/Trevi
https://github.com/wangshengjia/VWInstantRun
https://github.com/s4cha/Stevia
https://github.com/nettlep/learn-swift
https://github.com/pokeb/asi-http-request
https://github.com/hyperoslo/Spots
https://github.com/Constantine-Fry/das-quadrat
https://github.com/sleekbyte/tailor
https://github.com/layerhq/releases-ios
https://github.com/rehatkathuria/SnappingSlider
https://github.com/keefo/CATweaker
https://github.com/hirohisa/ImageLoaderSwift
https://github.com/tapwork/WatchdogInspector
https://github.com/Yalantis/YALField
https://github.com/benoitsan/BBUncrustifyPlugin-Xcode
https://github.com/path/FastImageCache
https://github.com/cconeil/Standard-Template-Protocols
https://github.com/floriankrueger/Manuscript
https://github.com/harikrishnant1991/JHProgressHUD
https://github.com/yukiasai/Gecco
https://github.com/cesarferreira/SwiftEventBus