-
Notifications
You must be signed in to change notification settings - Fork 1
/
ILRemoteSearchBar.podspec
22 lines (18 loc) · 1009 Bytes
/
ILRemoteSearchBar.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "ILRemoteSearchBar"
s.version = "0.0.2"
s.summary = "A UISearchBar subclass that observes the search field on a given frequency"
s.description = <<-DESC
A UISearchBar subclass that observes the search field on a given frequency.
This is meant to be used to query a remote server after the text on search field is changed
without firing the search for each character typed.
The search field fires the delegate method after the user stops writing for an specified time interval.
DESC
s.homepage = "https://github.com/Adrian2112/ILRemoteSearchBar"
s.license = 'MIT'
s.author = { "Adrián González" => "bernardogzzf@gmail.com" }
s.platform = :ios
s.source = { :git => "https://github.com/Adrian2112/ILRemoteSearchBar.git", :tag => '0.0.2' }
s.source_files = 'ILRemoteSearchBar/*.{h,m}'
s.requires_arc = true
end