-
Notifications
You must be signed in to change notification settings - Fork 52
/
BPForms.podspec
33 lines (26 loc) · 1.07 KB
/
BPForms.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
Pod::Spec.new do |s|
s.name = 'BPForms'
s.version = '2.1.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Dynamic forms for iPhone/iPad - iOS 6, 7, 8 and later.'
s.homepage = 'https://github.com/bpoplauschi/BPForms'
s.author = { 'Bogdan Poplauschi' => '[email protected]' }
s.source = { :git => 'https://github.com/bpoplauschi/BPForms.git',
:tag => "#{s.version}" }
s.description = 'Inspired from BZGFormViewController, BPForms allows easily creating beautiful dynamic forms.'
s.requires_arc = true
s.platform = :ios, "6.0"
s.preserve_paths = 'README*'
s.default_subspec = 'FloatLabel'
s.subspec 'Core' do |core|
core.source_files = 'BPForms/**/*.{h,m}'
core.public_header_files = 'BPForms/**/*.h'
core.dependency 'Masonry'
end
s.subspec 'FloatLabel' do |floatlabel|
floatlabel.source_files = 'BPFormsFloatLabel/*.{h,m}'
floatlabel.public_header_files = 'BPFormsFloatLabel/*.h'
floatlabel.dependency 'BPForms/Core'
floatlabel.dependency 'JVFloatLabeledTextField'
end
end