|
1 | 1 | Pod::Spec.new do |s|
|
2 |
| - |
3 |
| - # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
4 |
| - s.name = "AutocompleteField" |
5 |
| - s.version = "1.1" |
6 |
| - s.summary = "Add word completion to your UITextFields." |
7 |
| - |
8 |
| - s.homepage = "http://iosdev.io/autocompletefield" |
9 |
| - s.screenshots = "https://camo.githubusercontent.com/9a525a5623198884f545d43c7aa0df857488c2c6/68747470733a2f2f646c2e64726f70626f7875736572636f6e74656e742e636f6d2f752f3935383439392f707265766965772e6769663f646c3d30" |
10 |
| - |
11 |
| - # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
12 |
| - s.license = "MIT" |
13 |
| - |
14 |
| - # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
15 |
| - s.author = { "Filip Stefansson" => "[email protected]" } |
16 |
| - |
17 |
| - # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
18 |
| - s.platform = :ios |
19 |
| - s.ios.deployment_target = "8.0" |
20 |
| - |
21 |
| - # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
22 |
| - s.source = { :git => "https://github.com/filipstefansson/AutocompleteField.git", :tag => "1.1" } |
23 |
| - |
24 |
| - # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
25 |
| - s.source_files = "AutocompleteField/**/*.swift" |
26 |
| - |
| 2 | + s.name = "AutocompleteField" |
| 3 | + s.version = "2.0" |
| 4 | + s.summary = "Subclass of UITextField that shows inline suggestions while typing." |
| 5 | + s.homepage = "https://github.com/filipstefansson/AutocompleteField" |
| 6 | + s.screenshots = "https://raw.githubusercontent.com/filipstefansson/AutocompleteField/master/.github/example.gif?raw=1" |
| 7 | + s.license = { :type => "MIT", :file => "LICENSE" } |
| 8 | + s.author = { "Filip Stefansson" => "[email protected]" } |
| 9 | + s.platform = :ios |
| 10 | + s.ios.deployment_target = "10.0" |
| 11 | + s.source = { :git => "https://github.com/filipstefansson/AutocompleteField.git", :tag => "2.0" } |
| 12 | + s.source_files = "Sources/**/*.swift" |
27 | 13 | end
|
0 commit comments