-
Notifications
You must be signed in to change notification settings - Fork 0
/
Validate.podspec
26 lines (20 loc) · 925 Bytes
/
Validate.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
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