forked from FancyPixel/gulps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
37 lines (30 loc) · 757 Bytes
/
Podfile
File metadata and controls
37 lines (30 loc) · 757 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
25
26
27
28
29
30
31
32
33
34
35
36
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
def common_pods
# pod 'Realm', '~> 0.92'
pod 'AMWaveTransition', '~> 0.5'
pod 'AHKActionSheet', '~> 0.5'
pod 'pop', '~> 1.0'
pod 'AMPopTip', '~> 0.7'
pod 'UICountingLabel', '~> 1.2'
pod 'JTCalendar', git: 'https://github.com/andreamazz/JTCalendar', branch: 'develop'
pod 'DPMeterView', git: 'https://github.com/andreamazz/DPMeterView'
# pod 'BEMSimpleLineGraph'
end
target 'Gulps' do
common_pods
end
target 'GulpsTests' do
common_pods
pod 'Nimble'
pod 'Quick'
pod 'Nimble-Snapshots'
end
# target 'GulpsToday' do
# pod 'Realm', '~> 0.92'
# end
# target 'Gulps WatchKit Extension' do
# pod 'Realm', '~> 0.92'
# end
inhibit_all_warnings!
use_frameworks!