-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAnyError.podspec
More file actions
20 lines (16 loc) · 1.02 KB
/
AnyError.podspec
File metadata and controls
20 lines (16 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'AnyError'
s.version = '2.0.1'
s.summary = 'Swift µframework - `AnyError(cause:ErrorType)` - providing type erasure for ErrorType(s)'
s.description = <<-DESC
Swift µframework - `AnyError(cause:ErrorType)` - providing type erasure for ErrorType(s). Originally designed to be used as the error type associated with a Future or Result - so that when composing futures with map/flatMap the error type is the same and can be propagated through the compositional chain.
DESC
s.homepage = 'http://nickager.com/blog/2016/03/07/AnyError'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Nick Ager' => 'nick.ager@gmail.com' }
s.source = { :git => 'https://github.com/nickager/AnyError.git', :tag => s.version.to_s }
s.social_media_url = "http://twitter.com/NickAger"
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.source_files = 'AnyError/Classes/**/*'
end