-
Notifications
You must be signed in to change notification settings - Fork 0
/
DYFRuntimeProvider.podspec
44 lines (32 loc) · 1.5 KB
/
DYFRuntimeProvider.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
Pod::Spec.new do |spec|
spec.name = "DYFRuntimeProvider"
spec.version = "2.1.1"
spec.summary = "DYFRuntimeProvider wraps the runtime, and provides some common usages."
spec.description = <<-DESC
TODU: DYFRuntimeProvider wraps the runtime, and provides some common usages.
DESC
spec.homepage = "https://github.com/itenfay/DYFRuntimeProvider"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Tenfay" => "itenfay@163.com" }
# Or just: spec.author = "Tenfay"
# spec.authors = { "Tenfay" => "itenfay@163.com" }
# spec.social_media_url = "https://twitter.com/Tenfay"
# spec.platform = :ios
spec.ios.deployment_target = "7.0"
# spec.osx.deployment_target = "10.7"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
spec.source = { :git => "https://github.com/itenfay/DYFRuntimeProvider.git", :tag => spec.version.to_s }
spec.source_files = "Classes/*.{h,m}"
spec.public_header_files = "Classes/*.h"
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
# spec.framework = "SomeFramework"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
end