-
Notifications
You must be signed in to change notification settings - Fork 5
/
MBDebugPanel.podspec
21 lines (18 loc) · 1.07 KB
/
MBDebugPanel.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "MBDebugPanel"
s.version = "0.2.3"
s.summary = "A painless, configurable, hidden panel to add shortcuts to run code, test features, or whatever you like."
s.description = <<-DESC
MBDebugPanel offers a simple way to embed a set of dev-mode-only features
(Though you could ship it with your app if you really wanted to.)
It's like the Konami code, but for your app.
DESC
s.homepage = "https://github.com/mindbody/MBDebugPanel.git"
s.license = 'MIT'
s.author = { "Matthew Holden" => "[email protected]" }
s.source = { :git => "https://github.com/mindbody/MBDebugPanel.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'MBDebugPanel/Sources/MBDebugPanel/Classes/**/*.{h,m}', 'MBDebugPanel/Sources/MBDebugPanel/Headers/**/*.{h}'
s.resources = 'MBDebugPanel/Sources/MBDebugPanel/Assets/componentCells/*.xib'
end