forked from jasonnam/Navajo-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Navajo-Swift.podspec
39 lines (28 loc) · 1.26 KB
/
Navajo-Swift.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
27
28
29
30
31
32
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "Navajo-Swift"
s.version = "2.1.1"
s.summary = "Password Validator & Strength Evaluator"
s.description = <<-DESC
Evaluating Password Strength
Validating Password
Available Validation Rules
-Allowed Characters
-Required Characters (custom, lowercase, uppercase, decimal, symbol)
-Non-Dictionary Word
-Minimum / Maximum Length
-Predicate Match
-Regular Expression Match
-Block Evaluation
Localization
DESC
s.homepage = "https://github.com/jasonnam/Navajo-Swift"
s.author = { "Jason Nam" => "[email protected]" }
s.social_media_url = "http://jasonnam.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source = { :git => "https://github.com/jasonnam/Navajo-Swift.git",
:tag => "2.1.1" }
s.source_files = "Sources/Navajo-Swift/*.{swift}"
s.requires_arc = true
end