forked from pointfreeco/swift-overture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOverture.podspec
More file actions
35 lines (26 loc) · 851 Bytes
/
Overture.podspec
File metadata and controls
35 lines (26 loc) · 851 Bytes
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
version = "0.3.0"
Pod::Spec.new do |s|
s.name = "Overture"
s.version = version
s.summary = "A library for function composition."
s.description = <<-DESC
A library for function composition.
Overture is a collection of functions for building programs with functions.
DESC
s.homepage = "https://github.com/pointfreeco/swift-overture"
s.license = "MIT"
s.authors = {
"Stephen Celis" => "stephen@stephencelis.com",
"Brandon Williams" => "mbw234@gmail.com"
}
s.social_media_url = "https://twitter.com/pointfreeco"
s.source = {
:git => "https://github.com/pointfreeco/swift-overture.git",
:tag => version
}
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source_files = "Sources", "Sources/**/*.swift"
end