forked from sumanthk2006/iOS-KML-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iOS-KML-Framework.podspec
24 lines (21 loc) · 944 Bytes
/
iOS-KML-Framework.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
Pod::Spec.new do |s|
s.name = "iOS-KML-Framework"
s.version = "1.0.0"
s.summary = "The iOS framework for parsing/generating KML files."
s.description = <<-DESC
This is a iOS framework for parsing/generating KML files.
This Framework parses the KML from a URL or Strings and create Objective-C Instances of KML structure.
DESC
s.homepage = "http://kmlframework.com"
s.screenshots = "kmlframework.com/img/kml_viewer.png", "kmlframework.com/img/kml_logger.png"
s.license = 'MIT'
s.author = { "Watanabe Toshinori" => "[email protected]" }
s.source = { :git => "http://FLCLjp/iOS-KML-Framework.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.source_files = 'Classes'
s.resources = 'Assets'
s.ios.framework = 'UIKit'
s.dependency 'TBXML', '~> 1.5'
end