- Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathDKFilterView.podspec
More file actions
Latest commit
41 lines (35 loc) · 1.42 KB
/
Copy pathDKFilterView.podspec
File metadata and controls
41 lines (35 loc) · 1.42 KB
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
39
40
41
#
# Be sure to run `pod lib lint DKFilterView.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.newdo |s|
s.name="DKFilterView"
s.version="0.1.0"
s.summary="A custome filter view."
s.description=<<-DESC
DKFilterView will auto generate views based on the
models you set.
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage="https://github.com/drinking/DKFilterView"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license='MIT'
s.author={"Drinking"=>"pan49@126.com"}
s.source={:git=>"https://github.com/drinking/DKFilterView.git",:tag=>s.version.to_s}
# s.social_media_url = 'https://twitter.com/Crazy_Drinking'
s.platform=:ios,'7.0'
s.requires_arc=true
s.source_files='Pod/Classes'
s.resource_bundles={
'DKFilterView'=>['Pod/Assets/*.png']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
s.dependency'Masonry','~> 0.5.3'
end