-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathRHPreviewCell.podspec
26 lines (20 loc) · 1.54 KB
/
RHPreviewCell.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 = "RHPreviewCell"
s.version = "1.1.0"
s.summary = "Now you can add extra feature to your TableViewCell, which provides your users to preview content behind the cell."
s.description = "Now you can add extra feature to your TableViewCell, which provides your users to preview content behind the cell."
s.homepage = "https://github.com/robertherdzik/RHPreviewCell"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Robert Herdzik" => "[email protected]" }
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = {
:git => "https://github.com/robertherdzik/RHPreviewCell.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '9.0'
s.requires_arc = true
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.source_files = "RHPreviewCell/**/*.{swift}"
end