-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathOptionalExtensions.podspec
More file actions
21 lines (18 loc) · 880 Bytes
/
OptionalExtensions.podspec
File metadata and controls
21 lines (18 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "OptionalExtensions"
s.version = "3.0"
s.summary = "Swift µframework with extensions for the Optional Type"
s.description = <<-EOS
Swift's Optional is pretty awesome, but it can always get better. This repository is an humble attempt to add some utility methods to it.
EOS
s.homepage = "https://github.com/RuiAAPeres/OptionalExtensions"
s.license = "MIT"
s.author = "Rui Peres"
s.social_media_url = "https://twitter.com/peres"
s.source = { :git => "https://github.com/RuiAAPeres/OptionalExtensions.git", :tag => s.version.to_s }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source_files = "OptionalExtensions/Source/*"
end