forked from Tangdixi/DCPathButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDCPathButton.podspec
More file actions
39 lines (26 loc) · 963 Bytes
/
DCPathButton.podspec
File metadata and controls
39 lines (26 loc) · 963 Bytes
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
Pod::Spec.new do |s|
s.name = "DCPathButton"
s.version = "2.1.1"
s.summary = " A beautiful button copy from Path® "
s.description = <<-DESC
DCPathButton is a menu button, design by an famous App Path®.
Since Path® 4.0, it return to use a tab bar instead of a side bar,
and also change the menu button. So I try to implement it and then
the DCPathButton born :)
DESC
s.homepage = "https://github.com/Tangdixi/DCPathButton"
s.license = {
:type => 'MIT',
:text => 'The DCPathButton use the MIT license'
}
s.author = { "Tangdixi" => "Tangdixi@gmail.com" }
s.platform = :ios, '7.0'
s.source = {
:git => "https://github.com/Tangdixi/DCPathButton.git",
:tag => "2.1.1"
}
s.source_files = 'DCPathButton/Classes/*.{h,m}'
s.resources = ["DCPathButton/Sounds/*"]
s.frameworks = 'QuartzCore','AudioToolbox'
s.requires_arc = true
end