-
Notifications
You must be signed in to change notification settings - Fork 1
/
PwnedPasswords.podspec
26 lines (23 loc) · 1.09 KB
/
PwnedPasswords.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
#
# Be sure to run `pod lib lint PwnedPasswords.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'PwnedPasswords'
s.version = '0.1.4'
s.summary = 'A small Swift wrapper for haveibeenpwned.com/Passwords'
s.description = <<-DESC
PwnedPasswords is a small wrapper around Troy Hunts Pwned Passwords service, haveibeenpwned.com/Passwords. It's written in Swift and requires Swift 4.0
DESC
s.homepage = 'https://github.com/foffer/PwnedPasswords'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'foffer' => 'foffer@gmail.com' }
s.source = { :git => 'https://github.com/foffer/PwnedPasswords.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/foffer'
s.swift_version = '4.0'
s.ios.deployment_target = '10.0'
s.source_files = 'PwnedPasswords/Classes/**/*'
end