-
Notifications
You must be signed in to change notification settings - Fork 15
/
CPInfiniteBanner.podspec
51 lines (42 loc) · 1.87 KB
/
CPInfiniteBanner.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Be sure to run `pod lib lint CPInfiniteBanner.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "CPInfiniteBanner"
s.version = "0.2.1"
s.summary = "CPInfiniteBanner is an auto scroll banner lib."
s.description = <<-DESC.gsub(/^\s*\|?/,'')
An optional longer description of CPInfiniteBanner
| * Markdown format.
| * Don't worry about the indent, we strip it!
DESC
s.homepage = "https://github.com/crespoxiao/CPInfiniteBanner"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "CrespoXiao" => "40176452@qq.com" }
s.source = { :git => "https://github.com/crespoxiao/CPInfiniteBanner.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.requires_arc = true
s.public_header_files = 'Pod/Classes/**/*.h'
s.source_files = 'Pod/Classes/**/*'
# Uncomment following lines if CPInfiniteBanner has some resource files.
s.resource_bundles = {
'CPInfiniteBanner' => ['Pod/Assets/*']
}
# Uncomment following lines if CPInfiniteBanner needs to link with some static libraries.
# s.vendored_libraries = [
# 'Pod/lib/a-static-library.a',
# ]
# Uncomment following lines if CPInfiniteBanner depends on any system framework.
s.frameworks = 'UIKit', 'Foundation'
# Uncomment following lines if CPInfiniteBanner depends on any public or private pod.
s.dependency 'libextobjc'
s.dependency 'SDWebImage'
s.dependency 'Masonry'
end