This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
PodFile
61 lines (49 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
use_frameworks!
if ENV["encrypted"]
MRDatabaseContentChecker = "MRDatabaseContentChecker/SQLCipher"
FMDB = "FMDB/SQLCipher"
else
MRDatabaseContentChecker = "MRDatabaseContentChecker"
FMDB = "FMDB"
end
abstract_target 'base' do
pod FMDB, '= 2.6'
pod 'CocoaLumberjack', '~> 2.0'
pod 'SQLCipher/fts', '~> 3.1.0' if ENV["encrypted"]
pod 'GoogleToolboxForMac/NSData+zlib', '~> 2.1.1'
target :CDTDatastore do
platform :ios, '8.0'
end
target :CDTDatastoreOSX do
platform :osx, '10.9'
end
abstract_target 'tests' do
pod 'Specta'
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
pod 'RSSwizzle'
pod MRDatabaseContentChecker, :git => 'https://github.com/rhyshort/MRDatabaseContentChecker.git'
target :CDTDatastoreTests do
platform :ios, '8.0'
end
target :CDTDatastoreTestsOSX do
platform :osx, '10.9'
end
end
abstract_target 'raTests' do
pod "Unirest", :git => 'https://github.com/rhyshort/unirest-obj-c.git'
pod 'TRVSMonitor'
pod 'NSData+Base64'
target :CDTDatastoreReplicationAcceptanceTestsOSX do
platform :osx, '10.9'
end
target :CDTDatastoreReplicationAcceptanceTests do
platform :ios, '8.0'
end
end
post_install do | installer |
print "SQLCipher: link Pods/Headers/sqlite3.h"
system "mkdir -p Pods/Headers/Private && ln -s ../../SQLCipher/sqlite3.h Pods/Headers/Private"
end
end