-
Notifications
You must be signed in to change notification settings - Fork 1
/
FastActions.podspec
51 lines (38 loc) · 1.88 KB
/
FastActions.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
Pod::Spec.new do |spec|
spec.name = "FastActions"
spec.version = "0.2.0"
spec.summary = "FastActions is a powerful and pure Swift implemented library for action handler."
spec.description = <<-DESC
The purpose of FastActions is to provide a more convenient way for handle action. FastActions currently only provides some basic functionality, and it has a lot of room for improvement. We will provide more features later to make it more complete.
DESC
spec.homepage = "https://github.com/dengyhgit/FastActions"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "DengYonghao" => "cbyniypeu@163.com" }
# spec.social_media_url = "https://twitter.com/dengyonghao2"
spec.swift_version = "4.2"
# spec.swift_versions = ['4.0', '4.2', '5.0']
spec.ios.deployment_target = "9.0"
spec.tvos.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
# spec.watchos.deployment_target = "3.0"
spec.source = { :git => "https://github.com/dengyhgit/FastActions.git", :tag => "#{spec.version}" }
spec.source_files = ["Sources/**/*.swift", "Sources/FastActions.h"]
spec.public_header_files = ["Sources/FastActions.h"]
spec.exclude_files = "Sources/Exclude"
spec.osx.exclude_files = [
"Sources/Extensions/UIControl+FastActions.swift",
"Sources/Extensions/UIGestureRecognizer+FastActions.swift",
"Sources/Extensions/UIView+FastActions.swift"
]
spec.watchos.exclude_files = [
]
spec.ios.exclude_files = [
]
spec.tvos.exclude_files = [
"Sources/Extensions/UIControl+FastActions.swift",
"Sources/Extensions/UIGestureRecognizer+FastActions.swift",
"Sources/Extensions/UIView+FastActions.swift"
]
spec.requires_arc = true
end