-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
43 lines (31 loc) · 1.34 KB
/
Podfile
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
# ignore all warnings from all pods
inhibit_all_warnings!
target 'ContainerViewTesting' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# A fast & simple, yet powerful & flexible logging framework for Mac and iOS
# https://github.com/CocoaLumberjack/CocoaLumberjack
# +recommended: https://github.com/robbiehanson/XcodeColors
pod 'CocoaLumberjack/Swift'
# A tool to enforce Swift style and conventions. https://realm.io
# https://github.com/realm/SwiftLint
# .swiftlint.yml file in root folder contains config parameters
pod 'SwiftLint' # dev. tool. (not mandatory, but nice to have)
# A Swift Autolayout DSL for iOS & OS X
# https://github.com/SnapKit/SnapKit
pod 'SnapKit'
# This library is a small RxSwift wrapper around Eureka
# https://github.com/antoninbiret/RxEureka
pod 'RxEureka' # includes 'Eureka' + 'RxSwift'
# DeviceKit is a replacement of UIDevice.
# https://github.com/dennisweissmann/DeviceKit
pod 'DeviceKit'
# A small library to measure the frame rate of an iOS Application.
# https://github.com/konoma/fps-counter
pod 'FPSCounter'
# FAPanels - Side menus with multiple transitions/animations
# https://github.com/fahidattique55/FAPanels
# pod 'FAPanels'
end