forked from krzysztofzablocki/Sourcery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
28 lines (24 loc) · 935 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
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
target 'Sourcery' do
use_frameworks!
pod 'Stencil', :git => "[email protected]:kylef/Stencil", :commit => '99efba5'
pod 'StencilSwiftKit', :git => "[email protected]:SwiftGen/StencilSwiftKit", :commit => '4cecc56'
pod 'Commander'
pod 'PathKit', :git => "[email protected]:kylef/PathKit.git", :commit => 'c662c2a'
pod 'SourceKittenFramework', :git => "[email protected]:jpsim/SourceKitten", :commit => '380a5f6'
pod 'SwiftTryCatch', :git => '[email protected]:seanparsons/SwiftTryCatch', :commit => '798c512'
pod 'libCommonCrypto'
target 'SourceryTests' do
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
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
end