forked from glushchenko/fsnotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
24 lines (20 loc) · 619 Bytes
/
Copy pathPodfile
File metadata and controls
24 lines (20 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use_frameworks!
def available_pods
platform :osx, '10.11'
pod 'MASShortcut'
pod 'Down', '~> 0.4.2'
pod 'Highlightr', :git => 'https://github.com/glushchenko/Highlightr.git', :branch => 'swift4-osx'
end
target 'FSNotes' do
available_pods
end
target 'FSNotes (iCloud Documents)' do
available_pods
end
target 'FSNotes iOS' do
platform :ios, '10'
pod 'Highlightr', :git => 'https://github.com/glushchenko/Highlightr.git', :branch => 'swift4-osx'
pod 'Solar'
pod 'NightNight', :git => 'https://github.com/weiran/NightNight.git', :branch => 'swift4'
pod 'Down', '~> 0.4.2'
end