forked from CommandPost/CommandPost-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
30 lines (25 loc) · 787 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
# Uncomment this line to define a global platform for your project
platform :osx, '10.12'
inhibit_all_warnings!
source 'https://github.com/CocoaPods/Specs.git'
project 'Hammerspoon', 'Profile' => :debug
target 'Hammerspoon' do
pod 'ASCIImage', '1.0.0'
pod 'CocoaLumberjack', '3.5.3'
pod 'CocoaAsyncSocket', '7.6.3'
pod 'CocoaHTTPServer', '2.3'
pod 'PocketSocket/Client', '1.0.1'
pod 'Crashlytics', '3.14.0'
pod 'Fabric', '1.10.2'
pod 'Sparkle', '1.22.0', :configurations => ['Release']
pod 'MIKMIDI', '1.7.0'
pod 'SocketRocket'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
puts "Enabling assertions in #{target.name}"
target.build_configurations.each do |config|
config.build_settings['ENABLE_NS_ASSERTIONS'] = 'YES'
end
end
end