-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathYYDebugDatabase.podspec
32 lines (25 loc) · 1.02 KB
/
YYDebugDatabase.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
32
#
# Be sure to run `pod lib lint YYDebugDatabase.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'YYDebugDatabase'
s.version = '2.1.1'
s.summary = 'easy way to process splite database'
s.homepage = 'https://y500.me'
s.license = { :type => 'None', :file => 'LICENSE' }
s.author = { 'y500' => '[email protected]' }
s.source = { :git => 'https://github.com/y500/YYDebugDatabase.git', :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.dependency 'GCDWebServer'
s.dependency 'FMDB'
s.source_files = 'DebugDatabase/**/*.{h,m}', 'DebugDatabase/*.{h,m}'
s.public_header_files = 'DebugDatabase/DebugDatabaseManager.h'
s.resource = "DebugDatabase/Web.bundle"
s.requires_arc = true
s.frameworks = 'Foundation'
s.library = 'sqlite3'
end