-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPBTimelineView.podspec
24 lines (20 loc) · 999 Bytes
/
PBTimelineView.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.platform = :ios
s.name = "PBTimelineView"
s.version = "1.0.0"
s.summary = "A tree view to show your events or anything else."
s.description = <<-DESC
This library has been created to show events or anything else in a tree view
DESC
s.homepage = "https://github.com/paul1893/PBTimelineView-iOS"
s.screenshots = "https://raw.githubusercontent.com/paul1893/PBTimelineView-iOS/master/Screenshots/demo.gif"
s.author = { "paul1893" => "[email protected]" }
s.license = '{ :type => "MIT", :file => "license" }'
s.social_media_url = "https://github.com/paul1893"
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/paul1893/PBTimelineView-iOS.git", :tag => s.version }
s.source_files = "PBTimelineView/lib/**/*"
s.exclude_files = "PBTimelineView/example/**/*", "PBTimelineView/Base.lproj/**/*"
s.frameworks = "UIKit", "Foundation"
s.requires_arc = true
end