forked from inspace-io/INSStackViewForms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSStackViewForms.podspec
More file actions
26 lines (23 loc) · 832 Bytes
/
INSStackViewForms.podspec
File metadata and controls
26 lines (23 loc) · 832 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
Pod::Spec.new do |s|
s.name = 'INSStackViewForms'
s.version = '1.2.4'
s.license = 'MIT'
s.summary = 'INSStackViewForms - iOS library to create dynamic UIStackView forms'
s.homepage = 'http://inspace.io'
s.authors = 'inspace.io'
s.source = { :git => 'https://github.com/inspace-io/INSStackViewForms.git', :tag => s.version.to_s }
s.default_subspec = 'Core'
s.requires_arc = true
s.subspec "Core" do |sp|
sp.source_files = 'INSStackViewForms/**/*.{h,m}'
sp.resource = 'INSStackViewForms/INSStackViewForms.bundle'
end
s.subspec "OAStackView" do |sp|
sp.source_files = "INSStackViewForms/**/*.{h,m}"
sp.dependency 'OAStackView'
sp.platform = :ios, '7.0'
sp.resource = 'INSStackViewForms/INSStackViewForms.bundle'
end
s.platform = :ios, '9.0'
s.frameworks = 'UIKit'
end