-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathSwiftyComments.podspec
26 lines (19 loc) · 1.18 KB
/
SwiftyComments.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
Pod::Spec.new do |s|
s.name = 'SwiftyComments'
s.version = '0.2.1'
s.summary = 'UITableView based component designed to display a hierarchy of expandable/foldable comments.'
s.description = <<-DESC
SwiftyComments is a UITableView based component designed to display a hierarchy of expandable/foldable comments.
DESC
s.homepage = 'https://github.com/tsucres/SwiftyComments'
s.screenshots = 'https://github.com/tsucres/SwiftyComments/raw/master/Screenshots/ImgurExample.png', 'https://github.com/tsucres/SwiftyComments/raw/master/Screenshots/HNExample.png', "https://github.com/tsucres/SwiftyComments/raw/master/Screenshots/RedditExample.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Stéphane Sercu' => '[email protected]' }
s.source = { :git => 'https://github.com/tsucres/SwiftyComments.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'SwiftyComments/Classes/**/*'
s.resources = "SwiftyComments/Assets/*.xcassets"
s.dependency 'SwipeCellKit', '2.6.0'
s.frameworks = 'UIKit'
s.swift_version = '4.1'
end