-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormTableView.podspec
More file actions
34 lines (23 loc) · 964 Bytes
/
FormTableView.podspec
File metadata and controls
34 lines (23 loc) · 964 Bytes
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
Pod::Spec.new do |s|
s.name = "FormTableView"
s.version = "0.6.3"
s.summary = "Simple Forms and LinearLayout"
s.description = <<-DESC
Either create forms in a flash or use it as a linear layout with some great built in functionality.
DESC
s.homepage = "https://github.com/JamieREvans/FormTableView"
s.license = 'MIT'
s.author = { "Jamie Riley Evans" => "jamie.riley.evans@gmail.com" }
s.source = { :git => "https://github.com/JamieREvans/FormTableView.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.dependency 'UIKitPlus', '~> 1.0'
# Use 'FormTableView/Basic' to exclude 'FormViews'
s.subspec 'Basic' do |ss|
ss.source_files = 'Pod/Classes/*.{h,m}'
end
s.subspec 'FormViews' do |ss|
ss.dependency 'FormTableView/Basic'
ss.source_files = 'Pod/Classes/Form Views/*.{h,m}'
end
end