forked from bb-coder/BHBPopView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBHBPopView.podspec
30 lines (25 loc) · 1.09 KB
/
BHBPopView.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
25
26
27
28
29
#enables colorin the terminal bash shell export
Pod::Spec.new do |s|
s.name = "BHBPopView"
s.version = "1.0.0"
s.summary = "Like sina PopView."
s.description = <<-DESC
It is a marquee view used on iOS, which implement by Objective-C.
DESC
s.homepage = "https://github.com/bb-coder/BHBPopView"
# s.screenshots = "http://7xkdhe.com1.z0.glb.clouddn.com/sinaAnimation1.gif"
s.license = 'MIT'
s.author = { "毕洪博" => "[email protected]" }
s.source = { :git => "https://github.com/bb-coder/BHBPopView.git", :tag => s.version.to_s }
# s.social_media_url = 'bihongbo.com'
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'BHBPopViewDemo/BHBPopViewDemo/BHBPopView/*'
# s.resources = 'Assets'
# s.ios.exclude_files = 'Classes/osx'
# s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
s.frameworks = 'CoreGraphics','UIKit','Foundation'
end