-
Notifications
You must be signed in to change notification settings - Fork 26
/
ReactiveTask.podspec
25 lines (21 loc) · 1018 Bytes
/
ReactiveTask.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
Pod::Spec.new do |s|
s.name = "ReactiveTask"
# Version goes here and will be used to access the git tag later on, once we have a first release.
s.version = "0.16.0"
s.summary = "Swift framework for launching shell tasks"
s.description = <<-DESC
ReactiveTask is a Swift framework for launching shell tasks (processes), built using ReactiveSwift.
DESC
s.homepage = "https://github.com/Carthage/ReactiveTask"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = "Carthage"
s.platform = :osx
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/Carthage/ReactiveTask.git", :tag => "#{s.version}" }
# Directory glob for all Swift files
s.source_files = "Sources/*.{swift}"
s.dependency 'ReactiveSwift', '~> 6.0'
s.pod_target_xcconfig = {"OTHER_SWIFT_FLAGS[config=Release]" => "$(inherited) -suppress-warnings" }
s.cocoapods_version = ">= 1.4.0"
s.swift_version = "5.0"
end