forked from Clipy/Clipy
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Podfile
49 lines (40 loc) · 958 Bytes
/
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
platform :osx, '10.11'
use_frameworks!
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
target 'Clipy' do
# Application
# pod 'PINCache'
# pod 'Sauce'
pod 'Sparkle'
# pod 'RealmSwift'
# pod 'Fabric'
# pod 'Crashlytics'
# pod 'RxCocoa'
# pod 'RxSwift'
# pod 'RxOptional'
# pod 'LoginServiceKit', :git => 'https://github.com/Clipy/LoginServiceKit.git'
# pod 'KeyHolder'
# pod 'RxScreeen'
# pod 'AEXML'
pod 'LetsMove'
# pod 'SwiftHEXColors'
# pod 'CryptoSwift'
# pod "RxRealm"
# Utility
pod 'BartyCrouch'
pod 'SwiftLint'
pod 'SwiftGen'
target 'ClipyTests' do
inherit! :search_paths
# pod 'Quick'
# pod 'Nimble'
end
end
# Workaround for signing
# https://github.com/CocoaPods/CocoaPods/pull/6964#issuecomment-327851704
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings[‘PROVISIONING_PROFILE_SPECIFIER’] = ''
end
end