-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDDComponent.podspec
52 lines (37 loc) · 1.62 KB
/
DDComponent.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Pod::Spec.new do |s|
s.name = "DDComponent"
s.version = "0.5.5"
s.summary = "Make a collection controller to several component"
s.description = <<-DESC
Make a collection controller to several component. Make the controller smaller.
DESC
s.homepage = "https://github.com/djs66256/DDComponent"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "Daniel" => "djs66256@163.com" }
# Or just: s.author = "Daniel"
# s.authors = { "Daniel" => "djs66256@163.com" }
# s.social_media_url = "http://twitter.com/Daniel"
# s.platform = :ios
s.platform = :ios, "8.0"
# When using multiple platforms
s.ios.deployment_target = "8.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/djs66256/DDComponent.git", :tag => "#{s.version}" }
s.source_files = "Class/oc", "Class/oc/Collection/**/*.{h,m,mm,swift}"
s.exclude_files = "Class/Exclude"
# s.public_header_files = "Classes/**/*.h"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.framework = "UIKit"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
# s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
end