forked from krzysztofzablocki/Sourcery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
44 lines (37 loc) · 959 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
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
workspace 'Sourcery.xcworkspace'
use_frameworks!
inhibit_all_warnings!
def meta
pod 'SwiftLint'
end
def test_pods
pod 'Quick'
pod 'Nimble'
end
target 'TemplatesTests' do
project 'Templates/Templates.xcodeproj'
meta
test_pods
end
target 'Sourcery' do
pod 'StencilSwiftKit', :git=>'https://github.com/SwiftGen/StencilSwiftKit.git', :branch=>'master'
pod 'Commander'
pod 'PathKit'
pod 'XcodeEdit', '~> 1.0'
pod 'SourceKittenFramework', '~> 0.17'
pod 'SwiftTryCatch', :git => 'git@github.com:seanparsons/SwiftTryCatch', :commit => '798c512'
pod 'libCommonCrypto'
target 'SourceryTests' do
inherit! :search_paths
test_pods
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end