-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidate.podspec
More file actions
26 lines (20 loc) · 925 Bytes
/
Validate.podspec
File metadata and controls
26 lines (20 loc) · 925 Bytes
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
Pod::Spec.new do |s|
s.name = "Validate"
s.version = "0.1.0"
s.summary = "Minimal + composable validations in Swift. BYOBusiness Logic"
s.description = <<-DESC
Validate: Minimal + composable validations in Swift. BYOBusiness Logic. This
library is intended for data validations and user input validations where you
want full ownership over the validations that are run against your data.
DESC
s.homepage = "https://github.com/sweetmandm/Validate"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "David Sweetman"
s.social_media_url = "http://twitter.com/d_sweetman"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/sweetmandm/Validate.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
end