Skip to content

Commit

Permalink
feat: version 2 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipstefansson authored Oct 13, 2020
1 parent 73183e5 commit d382d53
Show file tree
Hide file tree
Showing 23 changed files with 930 additions and 774 deletions.
Binary file added .github/example.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
.swiftpm
36 changes: 11 additions & 25 deletions AutocompleteField.podspec
Original file line number Diff line number Diff line change
@@ -1,27 +1,13 @@
Pod::Spec.new do |s|

# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "AutocompleteField"
s.version = "1.1"
s.summary = "Add word completion to your UITextFields."

s.homepage = "http://iosdev.io/autocompletefield"
s.screenshots = "https://camo.githubusercontent.com/9a525a5623198884f545d43c7aa0df857488c2c6/68747470733a2f2f646c2e64726f70626f7875736572636f6e74656e742e636f6d2f752f3935383439392f707265766965772e6769663f646c3d30"

# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"

# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Filip Stefansson" => "[email protected]" }

# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.ios.deployment_target = "8.0"

# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/filipstefansson/AutocompleteField.git", :tag => "1.1" }

# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "AutocompleteField/**/*.swift"

s.name = "AutocompleteField"
s.version = "2.0"
s.summary = "Subclass of UITextField that shows inline suggestions while typing."
s.homepage = "https://github.com/filipstefansson/AutocompleteField"
s.screenshots = "https://raw.githubusercontent.com/filipstefansson/AutocompleteField/master/.github/example.gif?raw=1"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Filip Stefansson" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = "10.0"
s.source = { :git => "https://github.com/filipstefansson/AutocompleteField.git", :tag => "2.0" }
s.source_files = "Sources/**/*.swift"
end
10 changes: 10 additions & 0 deletions AutocompleteField.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
268 changes: 0 additions & 268 deletions AutocompleteField/AutocompleteField.swift

This file was deleted.

31 changes: 0 additions & 31 deletions Example/.gitignore

This file was deleted.

Loading

0 comments on commit d382d53

Please sign in to comment.