forked from krzysztofzablocki/Sourcery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
50 lines (42 loc) · 990 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
50
# Uncomment this line to define a global platform for your project
platform :osx, '10.11'
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 'CodableContextTests' do
project 'Templates/Templates.xcodeproj'
meta
test_pods
end
target 'Sourcery' do
pod 'Stencil', '0.13.1'
pod 'StencilSwiftKit', '2.7.0'
pod 'Commander', '0.7.0'
pod 'PathKit', '0.9.2'
pod "xcproj", :git =>'[email protected]:tuist/xcodeproj.git', :tag => '4.3.1'
pod 'SourceKittenFramework', '0.21.2'
pod 'SwiftTryCatch', :git => '[email protected]:seanparsons/SwiftTryCatch', :commit => '798c512'
pod 'AEXML', '4.3.3'
target 'SourceryTests' do
inherit! :search_paths
test_pods
end
end
target 'SourceryJS' do
pod 'PathKit', '0.9.2'
end
target 'SourcerySwift' do
pod 'PathKit', '0.9.2'
end