forked from wordpress-mobile/WordPress-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
66 lines (58 loc) · 2.77 KB
/
Podfile
File metadata and controls
66 lines (58 loc) · 2.77 KB
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
source 'https://github.com/CocoaPods/Specs.git'
xcodeproj 'WordPress/WordPress.xcodeproj'
inhibit_all_warnings!
platform :ios, '7.0'
pod '1PasswordExtension', '1.1.2'
pod 'AFNetworking', '~> 2.5.3'
pod 'Reachability', '3.1.1'
pod 'NSURL+IDN', '0.3'
pod 'DTCoreText', '1.6.13'
pod 'UIDeviceIdentifier', '~> 0.1'
pod 'SVProgressHUD', '~>1.1.3'
pod 'AMPopTip', '~> 0.7'
pod 'wpxmlrpc', '~> 0.8'
pod 'Mixpanel', '2.5.4'
pod 'CocoaLumberjack', '~>2.0'
pod 'NSLogger-CocoaLumberjack-connector', :git => 'https://github.com/steipete/NSLogger-CocoaLumberjack-connector.git', :tag => '1.5'
pod 'google-plus-ios-sdk', '~>1.5'
pod 'CrashlyticsLumberjack', '2.0.1-beta'
pod 'HockeySDK', '~>3.6.0'
pod 'Helpshift', '~>4.10.0'
pod 'Lookback', '0.9.2', :configurations => ['Release-Internal']
pod 'MRProgress', '~>0.7.0'
pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :tag => '0.0.1', :configurations => ['Debug', 'Release-Internal']
pod 'EmailChecker', :podspec => 'https://raw.github.com/wordpress-mobile/EmailChecker/develop/ios/EmailChecker.podspec'
pod 'MGImageUtilities', :git => 'git://github.com/wordpress-mobile/MGImageUtilities.git', :branch => 'gifsupport'
pod 'NSObject-SafeExpectations', '0.0.2'
pod 'Simperium', '0.7.9'
pod 'WordPressApi', '~> 0.3.4'
pod 'WordPress-iOS-Shared', '0.3.2'
pod 'WordPress-iOS-Editor', :git => 'https://github.com/wordpress-mobile/WordPress-Editor-iOS.git', :commit => '95df515335a4cb4b922e29fe1707977ffb38bc9f'
pod 'WordPressCom-Stats-iOS', '0.3.4'
pod 'WordPressCom-Analytics-iOS', '0.0.31'
pod 'SocketRocket', :git => 'https://github.com/jleandroperez/SocketRocket.git', :commit => '3ff6038ad95fb94fd9bd4021f5ecf07fc53a6927'
pod 'WordPress-AppbotX', :git => 'https://github.com/wordpress-mobile/appbotx.git', :commit => '303b8068530389ea87afde38b77466d685fe3210'
pod 'WPMediaPicker', '~>0.3.2'
pod 'ReactiveCocoa', '~> 2.4.7'
target 'WordPressTodayWidget', :exclusive => true do
pod 'WordPressCom-Stats-iOS', '0.3.4'
end
target :WordPressTest, :exclusive => true do
pod 'OHHTTPStubs', '1.1.1'
pod 'OCMock', '3.1.2'
pod 'Specta', '0.5.0'
pod 'Expecta', '0.3.2'
end
target 'UITests', :exclusive => true do
pod 'KIF/IdentifierTests', '~>3.1'
end
# We need to add in AF_APP_EXTENSIONS=1 to AFNetworking used by the Today Extension otherwise the build will fail. See - https://github.com/AFNetworking/AFNetworking/pull/2589
post_install do |installer_representation|
installer_representation.project.targets.each do |target|
if ["Pods-WordPressTodayWidget-WordPressCom-Stats-iOS", "Pods-WordPressTodayWidget-AFNetworking"].include?(target.name)
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'AF_APP_EXTENSIONS=1']
end
end
end
end