-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathNoticeBar.podspec
More file actions
25 lines (18 loc) · 864 Bytes
/
NoticeBar.podspec
File metadata and controls
25 lines (18 loc) · 864 Bytes
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
Pod::Spec.new do |s|
s.name = "NoticeBar"
s.version = "0.1.7"
s.summary = "😍A simple NoticeBar with QQ notice view style.😀"
s.description = <<-DESC
😍A simple NoticeBar with QQ notice view style.😀 You can use the default style or custom style.
DESC
s.homepage = "https://github.com/qiuncheng/NoticeBar"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Qiuncheng" => "qiuncheng@gmail.com" }
# s.social_media_url = "https://twitter.com/qiuncheng"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/qiuncheng/NoticeBar.git", :tag => s.version }
s.source_files = 'NoticeBar/*.{swift,h}'
s.resource_bundles = {'NoticeBar' => ['NoticeBar/*.xcassets']}
s.framework = "UIKit"
s.requires_arc = true
end