-
Notifications
You must be signed in to change notification settings - Fork 67
/
zxcvbn-ios.podspec
25 lines (24 loc) · 1.2 KB
/
zxcvbn-ios.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
Pod::Spec.new do |s|
s.name = "zxcvbn-ios"
s.version = "1.0.4"
s.summary = "A realistic password strength estimator."
s.description = <<-DESC
An obj-c port of zxcvbn, a password strength estimation library,
designed for iOS.
DBZxcvbn attempts to give sound password advice through pattern
matching and conservative entropy calculations. It finds 10k common
passwords, common American names and surnames, common English words,
and common patterns like dates, repeats (aaa), sequences (abcd),
and QWERTY patterns.
DESC
s.homepage = "https://github.com/dropbox/zxcvbn-ios"
s.screenshots = "https://raw.githubusercontent.com/dropbox/zxcvbn-ios/master/zxcvbn-example.png"
s.license = "MIT"
s.author = { "Leah Culver" => "[email protected]" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/dropbox/zxcvbn-ios.git", :tag => "v1.0.4"}
s.source_files = "Zxcvbn/*.{h,m}"
s.exclude_files = "Zxcvbn/Zxcvbn.h"
s.resources = "Zxcvbn/generated/*.json"
s.requires_arc = true
end