-
Notifications
You must be signed in to change notification settings - Fork 645
Expand file tree
/
Copy pathPodfile
More file actions
26 lines (22 loc) · 695 Bytes
/
Podfile
File metadata and controls
26 lines (22 loc) · 695 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
platform :osx
def default_pods
pod 'RegexKitLite', :git => 'https://github.com/inquisitiveSoft/RegexKitLite.git'
# ParseKit '0.0.0.2010.4.29' using latest RegexKitLite
pod 'ParseKit', :podspec => 'Specs/ParseKit.podspec'
# Discount '2.1.5a' with configure and make
pod 'Discount', :podspec => 'Specs/Discount.podspec'
pod 'GRMustache', '~> 7.0.2'
pod 'Minizip/minishared', :git => 'https://github.com/nmoinvaz/minizip.git'
pod 'DDMinizip', :podspec => 'Specs/DDMinizip.podspec'
end
def tests_pods
pod 'GHUnit', '~> 0.5'
pod 'OCMock', '~> 3.4'
end
target 'appledoc' do
default_pods
end
target 'AppledocTests' do
default_pods
tests_pods
end