forked from RxSwiftCommunity/Action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Action.podspec
29 lines (25 loc) · 1.33 KB
/
Action.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
Pod::Spec.new do |s|
s.name = "Action"
s.version = "3.3.0-alpha.1"
s.summary = "Abstracts actions to be performed in RxSwift."
s.description = <<-DESC
Encapsulates an action to be performed, usually by a button press, but also useful to pass actions to execute later
(once or multiple times) without having to expose other objects.
DESC
s.homepage = "https://github.com/RxSwiftCommunity/Action"
s.license = { :type => "MIT", :file => "License.md" }
s.author = { "Ash Furrow" => "[email protected]" }
s.social_media_url = "http://twitter.com/ashfurrow"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/RxSwiftCommunity/Action.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.{swift}"
s.frameworks = "Foundation"
s.dependency "RxSwift", "~> 4.0.0-alpha.1"
s.dependency "RxCocoa", "~> 4.0.0-alpha.1"
s.watchos.exclude_files = "Control+Action.swift", "Button+Action.swift", "UIBarButtonItem+Action.swift", "UIAlertAction+Action.swift"
s.osx.exclude_files = "UIBarButtonItem+Action.swift", "UIAlertAction+Action.swift"
s.tvos.exclude_files = "UIBarButtonItem+Action.swift", "UIAlertAction+Action.swift"
end