forked from SvenTiigi/STLocationRequest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTLocationRequest.podspec
More file actions
31 lines (30 loc) · 1.24 KB
/
STLocationRequest.podspec
File metadata and controls
31 lines (30 loc) · 1.24 KB
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
29
30
31
#
# Be sure to run `pod lib lint STLocationRequest.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "STLocationRequest"
s.version = "1.1.2"
s.summary = "A simple and elegant way to request the user location"
s.description = <<-DESC
A simple user interface to request the user location. With nice citys and a rotating 3D Map View
DESC
s.homepage = "https://github.com/SvenTiigi/STLocationRequest"
s.license = 'MIT'
s.author = { "Sven Tiigi" => "sven@tiigi.de" }
s.source = { :git => "https://github.com/SvenTiigi/STLocationRequest.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Source/**/*'
s.resource_bundles = {
'STLocationRequest' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit', 'MapKit'
s.dependency 'Font-Awesome-Swift', '~> 1.4.8'
s.resource_bundles = {
'STLocationRequest' => ['Pod/Assets/*.storyboard']
}
end