-
Notifications
You must be signed in to change notification settings - Fork 22
/
RHSideButtons.podspec
26 lines (20 loc) · 1.61 KB
/
RHSideButtons.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 = "RHSideButtons"
s.version = "1.1.0"
s.summary = "Library provides easy to implement variation of Android (Material Design) Floating Action Button for iOS. You can use it as your app small side menu."
s.description = "Library provides easy to implement variation of Android (Material Design) Floating Action Button for iOS. You can use it as your app small side menu."
s.homepage = "https://github.com/robertherdzik/RHSideButtons"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Robert Herdzik" => "robert.herdzik@yahoo.com" }
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = {
:git => "https://github.com/robertherdzik/RHSideButtons.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '8.0'
s.requires_arc = true
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.source_files = "RHSideButtons/**/*.{swift}"
end