-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
37 lines (23 loc) · 985 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
platform :ios, "11.0"
use_frameworks!
project 'AUParamsApp'
def shared_pods
#pod 'GDMusic', :path => '/Users/gene/Development/xcode/gene/Swift/mypods/GDMusic'
#pod 'SwiftMusicKit', :path => '/Users/gene/Development/xcode/gene/Swift/Music/SwiftMusicKit'
#pod 'PianoKeyboard', :path => '/Users/gene/Development/xcode/gene/Swift/mypods/PianoKeyboard/PianoKeyboard'
#pod 'CommonMusicNotation', :path => '/Users/gene/Development/xcode/gene/Swift/mypods/CommonMusicNotation'
#pod 'GDViews', :path => '/Users/gene/Development/xcode/gene/Swift/mypods/GDViews'
#pod 'TextFieldDatePicker', :path => '/Users/gene/Development/xcode/gene/Swift/mypods/TextFieldDatePicker'
pod 'GDLogger', :path => '/Users/gene/Development/xcode/gene/Swift/mypods/GDLogger'
end
def testing_pods
pod 'Quick', '~> 1.2.0'
pod 'Nimble', '~> 7.0.2'
end
target 'AUParamsApp' do
shared_pods
end
target 'AUParamsAppTests' do
shared_pods
testing_pods
end