-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathValidated.podspec
20 lines (20 loc) · 1.01 KB
/
Validated.podspec
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 = "Validated"
s.version = "3.0.0"
s.summary = "A Swift μ-Library for Somewhat Dependent Types"
s.description = <<-DESC
Validated is a μ-library (~50 Source Lines of Code) that allows you make better use of Swift's type system
by providing tools for easily generating new types with built-in guarantees.
DESC
s.homepage = "https://github.com/Ben-G/Validated"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Benjamin Encz" => "[email protected]" }
s.social_media_url = "http://twitter.com/benjaminencz"
s.source = { :git => "https://github.com/Ben-G/Validated.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.requires_arc = true
s.source_files = 'Validated/**/*.swift'
end