-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathPleaseBaoMe.podspec
28 lines (27 loc) · 2.43 KB
/
PleaseBaoMe.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
Pod::Spec.new do |s|
s.name = "PleaseBaoMe"
s.version = "1.1"
s.summary = "A useful tool to view SQLite file in Web browser during app runningprocedure."
s.description = <<-DESC
You can input your SQL query in the URI. And you can set TableName、 LIMIT、 OFFSET in navigation bar easily, too.
DESC
s.homepage = "https://github.com/callmewhy/PleaseBaoMe"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "callmewhy" => "https://github.com/callmewhy" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "7.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/callmewhy/PleaseBaoMe.git", :tag => '1.1'}
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Classes/**/*.{h,m}"
# ――― Dependency ―――――――――――――――――――――――――――-――――――――――――――――――――――――――――――――――― #
s.dependencies = {
'FMDB' => '~> 2'
}
# ――― Dependency ―――――――――――――――――――――――――――-――――――――――――――――――――――――――――――――――― #
s.resource = "Classes/Web.bundle"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end