forked from mpangburn/FunctionKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionKit.podspec
More file actions
18 lines (14 loc) · 850 Bytes
/
Copy pathFunctionKit.podspec
File metadata and controls
18 lines (14 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "FunctionKit"
s.version = "0.1.0"
s.summary = "A framework for functional types and operations designed to fit naturally into Swift."
s.description = <<-DESC
A framework for functional types and operations designed to fit naturally into Swift. Includes operations such as composition and currying and types such as predicates and comparators.
DESC
s.homepage = "https://github.com/mpangburn/FunctionKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.source = { :git => "https://github.com/mpangburn/FunctionKit.git", :tag => s.version.to_s }
s.ios.deployment_target = "11.0"
s.source_files = "Sources/**/*"
end