-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutofiller.podspec
More file actions
24 lines (15 loc) · 833 Bytes
/
Autofiller.podspec
File metadata and controls
24 lines (15 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |spec|
spec.name = "Autofiller"
spec.version = "0.1.1"
spec.summary = "Simple library for connecting login and password field into Password Autofill form"
spec.swift_version = "5.0"
spec.description = <<-DESC
This library moves UITextFields into their common ancestor view so Password Autofill could see connection between them
DESC
spec.homepage = "http://github.com/djachenko/Autofiller"
spec.license = { :type => "MIT", :file => "LICENSE.txt" }
spec.author = { "Igor Djachenko" => "i.s.djachenko@gmail.com" }
spec.platform = :ios, "11.0"
spec.source = { :git => "https://github.com/djachenko/Autofiller.git", :tag => "#{spec.version}" }
spec.source_files = "Autofiller/*.{h,swift}", "Autofiller/Helpers/*.swift"
end