forked from iosphere/iOS-GPX-Framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGPX.podspec
24 lines (21 loc) · 947 Bytes
/
GPX.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "GPX"
s.version = "0.0.2"
s.summary = "The iOS framework for parsing/generating GPX files."
s.description = <<-DESC
This is a iOS framework for parsing/generating GPX files.
This Framework parses the GPX from a URL or Strings and create Objective-C Instances of GPX structure.
DESC
s.homepage = "http://gpxframework.com/"
s.screenshots = "http://gpxframework.com/img/gpx_viewer.png", "http://gpxframework.com/img/gpx_logger.png"
s.license = 'MIT'
s.author = { "Watanabe Toshinori" => "[email protected]" }
s.source = { :git => "https://github.com/webventil/iOS-GPX-Framework.git", :tag => s.version.to_s }
s.module_name = 'GPX'
s.platform = :ios
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.source_files = 'GPX/*'
s.ios.framework = 'UIKit'
s.dependency 'TBXML', '~> 1.5'
end