-
Notifications
You must be signed in to change notification settings - Fork 2
/
QAMenu.podspec
26 lines (18 loc) · 1.11 KB
/
QAMenu.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
Pod::Spec.new do |spec|
spec.name = "QAMenu"
spec.version = File.read('VERSION')
spec.summary = "Reduced data model driven layout renderer tailored to the usage of QA menus and debug menus which are not shipped to end users."
spec.description = <<-DESC
Reduced data model driven layout renderer tailored to the usage of QA menus, debug menus and settings screens which are not shipped to end users, but only used internally.
Unlike the system settings bundle, it directly lives in your app and is interactive. You can directly retrieve information and execute actions.
DESC
spec.homepage = "https://github.com/tschob/QAMenu"
spec.source = { :git => "https://github.com/tschob/QAMenu.git", :tag => "#{spec.version}" }
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = { "Hans Seiffert" => "[email protected]" }
spec.ios.deployment_target = '13.0'
spec.swift_version = '5.10'
spec.requires_arc = true
spec.source_files = "Sources/QAMenu/**/*.{h,swift}"
spec.dependency 'QAMenuUtils'
end