-
Notifications
You must be signed in to change notification settings - Fork 428
/
RETableViewManager.podspec
22 lines (19 loc) · 1009 Bytes
/
RETableViewManager.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'RETableViewManager'
s.version = '1.7'
s.authors = { 'Roman Efimov' => 'romefimov@gmail.com' }
s.homepage = 'https://github.com/romaonthego/RETableViewManager'
s.summary = 'Powerful data driven content manager for UITableView.'
s.source = { :git => 'https://github.com/romaonthego/RETableViewManager.git',
:tag => s.version.to_s }
s.license = { :type => "MIT", :file => "LICENSE" }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'RETableViewManager/Cells', 'RETableViewManager/Items', 'RETableViewManager'
s.public_header_files = 'RETableViewManager/Cells/*.h', 'RETableViewManager/*.h', 'RETableViewManager/Items/*.h'
s.resource_bundle = { 'RETableViewManager' => 'RETableViewManager/Resources/*' }
s.preserve_paths = 'RETableViewManager/Resources'
s.ios.deployment_target = '7.0'
s.dependency 'REFormattedNumberField', '~> 1.1.5'
s.dependency 'REValidation', '~> 0.1.4'
end