forked from InstaDev/IDDaDataSuggestions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIDDaDataSuggestions.podspec
More file actions
25 lines (21 loc) · 932 Bytes
/
IDDaDataSuggestions.podspec
File metadata and controls
25 lines (21 loc) · 932 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
25
Pod::Spec.new do |s|
s.name = "IDDaDataSuggestions"
s.version = "0.1.0"
s.summary = "Loads suggestions via dadata.ru API."
s.description = <<-DESC
Use dadata.ru API to load suggestions
* Support all methods address/party/fio
* Support all parameters from http://confluence.hflabs.ru/display/SGTDOC47/API
DESC
s.homepage = "https://github.com/instadev/IDDaDataSuggestions"
s.license = 'MIT'
s.author = { "4tune" => "sotskiy@gmail.com" }
s.source = { :git => "https://github.com/instadev/IDDaDataSuggestions.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'IDDaDataSuggestions' => ['Pod/Assets/*.png']
}
s.dependency 'AFNetworking', '~> 2.0'
end