forked from diogot/DTStorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDTStorage.podspec
29 lines (24 loc) · 927 Bytes
/
DTStorage.podspec
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
Pod::Spec.new do |s|
s.name = "DTStorage"
s.version = "0.2.0"
s.summary = "A library for data persistence on iOS that uses SQLite (with FMDB)."
s.homepage = "https://github.com/diogot/DTStorage"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Diogo Tridapalli" => "diogo@diogot.com" }
s.social_media_url = "http://twitter.com/diogot"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/diogot/DTStorage.git",
:tag => s.version.to_s }
s.framework = 'SystemConfiguration'
s.requires_arc = true
s.default_subspec = 'standard'
# TODO: source_files in a global scope
s.subspec 'standard' do |ss|
ss.source_files = "DTStorage/*.{h,m}"
ss.dependency 'FMDB'
end
s.subspec 'SQLCipher' do |ss|
ss.source_files = "DTStorage/*.{h,m}"
ss.dependency 'FMDB/SQLCipher'
end
end