-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNSLocation.podspec
More file actions
22 lines (18 loc) · 935 Bytes
/
NSLocation.podspec
File metadata and controls
22 lines (18 loc) · 935 Bytes
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 = "NSLocation"
s.module_name = "NSLocation"
s.version = "0.1.7"
s.summary = "No-Sweat/No-Shit Location Service for iOS"
s.description = <<-DESC
CoreLocation provided by iOS can provide anything but the most trival location service needs. NSLocation is set out to make collecting locations in your iOS app as no-sweat as it should.
DESC
s.homepage = "https://github.com/Rhumbix/NSLocation.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kenneth Jiang" => "kenneth.jiang@gmail.com" }
s.social_media_url = "https://www.facebook.com/Rhumbix"
s.platform = :ios, "8.0"
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/Rhumbix/NSLocation.git", :tag => s.version.to_s }
s.source_files = "NSLocation/**/*.{h,swift}"
s.requires_arc = true
end