-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRSFormView.podspec
49 lines (28 loc) · 2.22 KB
/
RSFormView.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
Pod::Spec.new do |s|
s.name = "RSFormView"
s.version = "2.1.6"
s.summary = "A library to easily create customizable form views to collect user data."
s.description = "RSFormView allows you to build beutiful forms in a few minutes with out of the box or custom designs."
s.homepage = "https://github.com/rootstrap/RSFormView"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Germán Stábile" => "[email protected]" }
s.social_media_url = "https://github.com/germanStabile"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "10.0"
s.swift_version = "5"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/rootstrap/RSFormView.git", :tag => "2.1.6" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "RSFormView/Classes/**/*.{h,m,swift}"
s.resources = "RSFormView/Classes/**/*.xib"
s.resource_bundles = {
'RSFormView' => [
'RSFormView/Classes/**/*.xib'
]
}
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.dependency "IQKeyboardManagerSwift", "~> 6.1.1"
end