forked from christopherney/SQPersist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQPersist.podspec
31 lines (26 loc) · 1.07 KB
/
SQPersist.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
30
31
Pod::Spec.new do |s|
s.name = "SQPersist"
s.version = "1.0.4"
s.summary = "Objective-C Persistence framework wrapper around SQLite."
s.homepage = "https://github.com/christopherney/SQPersist"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Christopher Ney" => "christopher.ney@gmail.com" }
s.social_media_url = "http://twitter.com/christopherney"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/christopherney/SQPersist.git", :tag => "1.0.4" }
s.source_files = "Sources/*.{h,m}"
# s.exclude_files = "Sources/Exclude"
s.public_header_files = "Sources/**/*.h"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
s.dependency "FMDB", "~> 2.5"
# Added Core subspec to share source
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/*.{h,m}'
end
# Added Cipher subspec to use the SQLCipher subspec of FMDB
s.subspec 'Cipher' do |ss|
ss.dependency 'SQPersist/Core'
ss.dependency 'FMDB/SQLCipher'
end
end