forked from rambler-digital-solutions/rambler-it-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
50 lines (40 loc) · 1.36 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
44
45
46
47
48
49
50
# CocoaPods specs repository URL
source 'https://github.com/cocoapods/Specs.git'
# The main application target
target 'Conferences' do
# Dependency management
pod 'Typhoon', '3.5.1'
pod 'RamblerTyphoonUtils/AssemblyCollector', '1.5.0'
# Networking
pod 'AFNetworking', '~> 2.6'
# Data mapping
pod 'EasyMapping', '~> 0.15'
# Core Data
pod 'MagicalRecord', '~> 2.3'
# UI
pod 'PureLayout', '~> 3.0'
pod 'Nimbus/Models', :git => 'https://github.com/rambler-ios/nimbus'
pod 'Nimbus/Collections', :git => 'https://github.com/rambler-ios/nimbus'
pod 'UICollectionViewLeftAlignedLayout', '1.0.1'
pod 'CrutchKit/Proxying', :git => 'https://github.com/CognitiveDisson/CrutchKit', :tag => '0.0.10'
# Images & Video
pod 'SDWebImage', '~> 3.7'
pod 'FLAnimatedImage', '~> 1.0'
pod 'XCDYouTubeKit', '~> 2.5'
# Navigation
pod 'RamblerSegues', '1.1.2'
pod 'ViperMcFlurry', '1.5.2'
# Logging & crash reporting
pod 'CocoaLumberjack', '~> 2.0'
pod 'Fabric'
pod 'Crashlytics'
# Other
pod 'libextobjc', '~> 0.4'
pod 'RamblerAppDelegateProxy', '0.0.3'
# Unit tests dependencies
target 'ConferencesTests' do
pod 'OCMock', '3.3.1'
pod 'MMBarricade', '~> 1.0.1'
pod 'RamblerTyphoonUtils/AssemblyTesting', '1.5.0'
end
end