|
| 1 | +Pod::Spec.new do |spec| |
1 | 2 |
|
2 | | -Pod::Spec.new do |s| |
| 3 | + spec.name = "1PasswordExtension" |
| 4 | + spec.header_dir = "OnePasswordExtension" |
| 5 | + spec.header_mappings_dir = "OnePasswordExtension" |
| 6 | + spec.version = "1.6.3" |
| 7 | + spec.summary = "With just a few lines of code, your app can add 1Password support." |
| 8 | + spec.description = <<-DESC |
| 9 | + With just a few lines of code, your app can add 1Password support, enabling your users to: |
3 | 10 |
|
4 | | - s.name = "1PasswordExtension" |
5 | | - s.header_dir = "OnePasswordExtension" |
6 | | - s.header_mappings_dir = "OnePasswordExtension" |
7 | | - s.version = "1.6.2" |
8 | | - s.summary = "With just a few lines of code, your app can add 1Password support." |
| 11 | + - Access their 1Password Logins to automatically fill your login page. |
| 12 | + - Use the Strong Password Generator to create unique passwords during registration, and save the new Login within 1Password. |
| 13 | + - Quickly fill 1Password Logins directly into web views. |
9 | 14 |
|
10 | | - s.description = <<-DESC |
11 | | - With just a few lines of code, your app can add 1Password support, enabling your users to: |
| 15 | + Empowering your users to use strong, unique passwords has never been easier. |
| 16 | + DESC |
12 | 17 |
|
13 | | - - Access their 1Password Logins to automatically fill your login page. |
14 | | - - Use the Strong Password Generator to create unique passwords during registration, and save the new Login within 1Password. |
15 | | - - Quickly fill 1Password Logins directly into web views. |
| 18 | + spec.homepage = "https://github.com/AgileBits/onepassword-app-extension" |
| 19 | + spec.license = { :type => 'MIT', :file => 'LICENSE.txt' } |
| 20 | + spec.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ] |
| 21 | + spec.social_media_url = "https://twitter.com/1Password" |
16 | 22 |
|
17 | | - Empowering your users to use strong, unique passwords has never been easier. |
18 | | - DESC |
19 | | - |
20 | | - s.homepage = "https://github.com/AgileBits/onepassword-app-extension" |
21 | | - s.license = { :type => 'MIT', :file => 'LICENSE.txt' } |
22 | | - s.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ] |
23 | | - s.social_media_url = "https://twitter.com/1Password" |
24 | | - |
25 | | - s.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => s.version } |
26 | | - s.platform = :ios, 7.0 |
27 | | - s.source_files = "*.{h,m}" |
28 | | - s.frameworks = "UIKit" |
29 | | - s.weak_framework = "WebKit" |
30 | | - s.exclude_files = "Demos" |
31 | | - s.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] } |
32 | | - s.requires_arc = true |
| 23 | + spec.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => spec.version } |
| 24 | + spec.platform = :ios, 7.0 |
| 25 | + spec.source_files = "*.{h,m}" |
| 26 | + spec.frameworks = "UIKit" |
| 27 | + spec.weak_framework = "WebKit" |
| 28 | + spec.exclude_files = "Demos" |
| 29 | + spec.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] } |
| 30 | + spec.requires_arc = true |
33 | 31 | end |
0 commit comments