-
Notifications
You must be signed in to change notification settings - Fork 31
/
FTGooglePlacesAPI.podspec
28 lines (23 loc) · 1.3 KB
/
FTGooglePlacesAPI.podspec
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
26
27
28
Pod::Spec.new do |s|
s.name = "FTGooglePlacesAPI"
s.version = "1.1"
s.summary = "iOS library for querying Google Places API using simple block-based interface"
s.description = <<-DESC
FTGooglePlacesAPI allows you to perform Google Places API requests with ease in a few lines of code. Library includes, but is not limited to, following:
- Place Search
- Nearby Search (search places withing a specified area)
- Text Search (search places based on a search string)
- Place Details (get more comprehensive information about a place)
DESC
s.homepage = "https://github.com/FuerteInternational/FTGooglePlacesAPI"
s.screenshots = "http://i.imgur.com/DGMbcw1.png", "http://i.imgur.com/1POEIRN.png", "http://i.imgur.com/ATk5qhR.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Fuerte International" => "open-source@fuerteint.com",
"Lukas Kukacka" => "opensource@lukaskukacka.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/FuerteInternational/FTGooglePlacesAPI.git",
:tag => s.version.to_s }
s.source_files = 'FTGooglePlacesAPI/*.{h,m}'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 2.2'
end