-
Notifications
You must be signed in to change notification settings - Fork 46
/
Podfile
68 lines (51 loc) · 1.31 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
def import_common_pods
pod 'AFNetworking'
pod 'AFNetworkActivityLogger'
pod 'UMengAnalytics'
pod 'MTDates'
pod 'Mantle', '~> 1.5.4'
pod 'UIResponder+KeyboardCache'
pod 'CocoaLumberjack', '= 2.0.0-beta4'
pod 'SSKeychain'
pod 'NSDate+TimeAgo'
pod 'JLRoutes'
pod 'SocketRocket', '0.4.1'
pod 'SHActionSheetBlocks'
pod 'UIAlertView+Blocks'
pod 'FrameAccessor'
pod 'SDWebImage', :git => 'https://github.com/liyong03/SDWebImage.git'
pod 'YLGIFImage'
pod 'CTAssetsPickerController', '~> 2.9.0'
pod 'TTTAttributedLabel'
pod 'VBFPopFlatButton'
pod 'MSCMoreOptionTableViewCell'
pod 'MGSwipeTableCell'
pod 'Hanzi2Pinyin', :git => 'https://github.com/zzq889/hanzi2pinyin.git'
pod 'M13BadgeView', :git => 'https://github.com/Marxon13/M13BadgeView.git'
pod 'MagicalRecord', '~> 2.2.0'
pod 'FastEasyMapping'
pod 'hpple'
pod 'MJRefresh', '~> 1.4.7'
pod 'TWRProgressView'
pod 'JazzHands', '~> 0.2.1'
pod 'StyledPageControl'
pod 'ReactiveCocoa'
pod 'Haneke'
pod 'FLAnimatedImage', '~> 1.0.8'
pod 'libPhoneNumber-iOS', '~> 0.8.5'
pod 'ReactiveViewModel'
pod 'Masonry'
pod 'MMMarkdown', '~> 0.5'
pod 'Mixpanel'
pod 'AMPopTip'
pod 'SZLoadingTableViewController'
end
target 'Talk' do
import_common_pods
end
target 'TalkTests' do
import_common_pods
end