-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
49 lines (41 loc) · 1.8 KB
/
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
abstract_target 'SenseApp' do
pod 'SHSProtoBuf', :git => '[email protected]:hello/protobuf-objc.git'
pod 'LGBluetooth', :git => '[email protected]:hello/LGBluetooth.git'
pod 'SenseKit', :git => '[email protected]:hello/SenseKit.git'
# pod 'SenseKit', :path => '../SenseKit'
pod 'AttributedMarkdown', :git => '[email protected]:hello/AttributedMarkdown.git', :inhibit_warnings => true
pod 'CGFloatType', '~> 1.3.1'
pod 'SORelativeDateTransformer', :git => '[email protected]:jrmiddle/SORelativeDateTransformer.git', :commit => '51f53d591b7c19da1fcea5a91e5c044089c99410'
# the actual Sense iOS app
target 'Sense' do
pod 'FBSDKLoginKit', '~> 4.18.0'
pod 'FBSDKCoreKit', '~> 4.18.0'
pod 'UIImageEffects', '~> 0.0.1'
pod 'SVWebViewController', :git => 'https://github.com/TransitApp/SVWebViewController.git'
pod 'ZendeskSDK', :git => 'https://github.com/zendesk/zendesk_sdk_ios.git', :tag => '1.5.4.1'
pod 'UICountingLabel', '~> 1.2.0'
pod 'Bugsnag', '~> 4.1.0'
pod 'NAPickerView', :git => '[email protected]:hello/NAPickerView.git'
pod 'Charts/Core', '3.0.1'
pod 'iOSDFULibrary', '2.1.6'
pod 'Analytics', '3.0.7'
pod 'Solar'
end
# Room Conditions extension
target 'RoomConditionsExtension' do
end
# tests for the app
target 'Tests' do
pod 'Kiwi'
pod 'Nocilla'
pod 'Charts/Core', '3.0.1'
end
end
post_install do |installer|
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-SenseApp-Sense/Pods-SenseApp-Sense-acknowledgements.plist',
'SleepModel/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end