-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pod lint issues and code formatting.
- Loading branch information
1 parent
88a69e3
commit 1a7994a
Showing
2 changed files
with
4 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'EyePasswordTextField' | ||
s.version = '0.1.0' | ||
s.summary = 'A short description of EyePasswordTextField.' | ||
|
||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
s.description = <<-DESC | ||
TODO: Add long description of the pod here. | ||
DESC | ||
|
||
s.summary = 'A custom password field SDK for iOS, completely written in Swift' | ||
s.homepage = 'https://github.com/ayusinghi96/EyePasswordTextField' | ||
|
||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Ayush Singhi' => 'ayusinghi96@gmail.com' } | ||
s.source = { :git => 'https://github.com/ayusinghi96/EyePasswordTextField.git', :tag => s.version.to_s } | ||
|
||
s.platforms = { :ios => '11.0' } | ||
s.swift_version = '5.0' | ||
s.ios.deployment_target = '11.0' | ||
|
||
s.source_files = 'EyePasswordTextField/Classes' | ||
s.resources = 'EyePasswordTextField/*.xcassets' | ||
|
||
s.frameworks = 'UIKit' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters