-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMTZTableViewManager.podspec
More file actions
42 lines (30 loc) · 1.94 KB
/
Copy pathMTZTableViewManager.podspec
File metadata and controls
42 lines (30 loc) · 1.94 KB
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
Pod::Spec.new do |s|
s.name = "MTZTableViewManager"
s.version = "1.2.0"
s.summary = "A powerful framework for creating table views in a descriptive way, as well generating and handling table view forms."
s.description = <<-DESC
MTZTableViewManager is a powerful framework that allows you to create table views in a descriptive way, by specifying rows and sections
without having to bother with indexes. It also provides a set of tools for creating forms and handling their input, applying masks,
performing validations and converting to and from complex objects.
DESC
s.homepage = "https://github.com/mtzaquia/MTZTableViewManager"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Mauricio Tremea Zaquia" => "mauriciotzaquia@gmail.com" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/mtzaquia/MTZTableViewManager.git", :tag => "#{s.version}" }
s.source_files = "MTZTableViewManager/**/*.{h,m}"
s.public_header_files = [
"MTZTableViewManager/MTZTable{Manager,Data,Section,Row}.h",
"MTZTableViewManager/Protocols/*.h",
"MTZTableViewManager/Forms/MTZTableForm{Row,DateRow,OptionRow}.h",
"MTZTableViewManager/Forms/Protocols/MTZForm{Object,Editing,Field,Option}.h",
"MTZTableViewManager/Forms/MTZForm{Validator,Converter}.h",
"MTZTableViewManager/Forms/MTZTextFieldMasker.h",
"MTZTableViewManager/Resources/MTZFormUtils.h",
"MTZTableViewManager/Resources/MTZTableViewManager.h",
"MTZTableViewManager/Command/MTZCommandExecutor.h",
"MTZTableViewManager/Command/Protocols/MTZCommand*.h"
]
s.requires_arc = true
s.dependency "MTZExpirationDatePicker", "~> 1.0.1"
end