forked from AloneMonkey/MonkeyDevSpecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AloneMonkey
committed
Nov 2, 2017
1 parent
2c9c660
commit af9fa54
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "MDMapView" #Pod的名字 | ||
spec.version = "1.0.0" #版本号 | ||
spec.summary = "MapView ViewController for MonkeyDev" | ||
spec.description = <<-DESC #Pod的描述 | ||
- MapView ViewController for MonkeyDev | ||
DESC | ||
|
||
spec.homepage = "https://github.com/AloneMonkey/MDMapView" #Pod的地址 | ||
|
||
spec.license = { :type => "BSD", :file => "LICENSE" } #License | ||
spec.author = { "AloneMonkey" => "liupeiqing1993@163.com" } #作者 | ||
spec.social_media_url = "http://weibo.com/xiaoqing28" #weibo | ||
spec.platform = :ios, "8.0" #平台、版本 | ||
spec.source = { :git => "https://github.com/AloneMonkey/MDMapView.git", :tag => spec.version.to_s } #代码的git地址以及tag | ||
spec.source_files = "MDMapView/**/*.{h,m}" | ||
spec.public_header_files = "MDMapView/**/*.h" | ||
spec.requires_arc = true | ||
spec.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "NO", 'HEADER_SEARCH_PATHS' => '/opt/MonkeyDev/include' } | ||
spec.dependency 'AMap2DMap' | ||
end |