forked from agilebits/onepassword-app-extension
-
Notifications
You must be signed in to change notification settings - Fork 9
/
GenericPasswordExtension.podspec
31 lines (24 loc) · 1.42 KB
/
GenericPasswordExtension.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
Pod::Spec.new do |s|
s.name = "GenericPasswordExtension"
s.version = "1.1"
s.summary = "With just a few lines of code, your app can add GenericPassword support."
s.description = <<-DESC
With just a few lines of code, your app can add GenericPassword support, enabling your users to:
- Access their GenericPassword Logins to automatically fill your login page.
- Use the Strong Password Generator to create unique passwords during registration, and save the new Login within GenericPassword.
- Quickly fill GenericPassword Logins directly into web views.
Empowering your users to use strong, unique passwords has never been easier.
DESC
s.homepage = "https://github.com/AgileBits/genericpassword-app-extension"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ]
s.social_media_url = "https://twitter.com/GenericPasswordBeta"
s.source = { :git => "https://github.com/AgileBits/genericpassword-app-extension.git", :tag => s.version }
s.platform = :ios, 7.0
s.source_files = "*.{h,m}"
s.frameworks = "UIKit"
s.weak_framework = "WebKit"
s.exclude_files = "Demos"
s.resources = "GenericPassword.xcassets"
s.requires_arc = true
end