-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCurrier.podspec
28 lines (24 loc) · 1.25 KB
/
Currier.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
#
# Be sure to run `pod lib lint Currier.podspec' to ensure this is a
# valid spec before submitting.
#
# The podspec file for Currier. A generic functional currying helper.
Pod::Spec.new do |s|
s.name = 'Currier'
s.version = '1.3.0'
s.summary = 'Fantastically easy function currying in Swift.'
s.description = <<-DESC
Produces a curried version of almost any other function. Just wrap your function in a single call ‘curry(myFunction)’ and the result will be a curried version of your original. A useful tool for working with parser combinators and other functional programming projects. Currently supports up to 14 parameters. Pull requests for improvements are welcome.
DESC
s.homepage = 'https://github.com/tigerpixel/Currier'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Liam' => '[email protected]' }
s.source = { :git => 'https://github.com/tigerpixel/Currier.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.1'
s.source_files = 'Sources/**/*.swift'
end