-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRZDebugMenu.podspec
More file actions
22 lines (17 loc) · 918 Bytes
/
RZDebugMenu.podspec
File metadata and controls
22 lines (17 loc) · 918 Bytes
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 = "RZDebugMenu"
s.version = "0.3.0"
s.summary = "In-app settings bundle using the plist API in XCode"
s.description = <<-DESC
RZDebugMenu mimics the behavior of a Settings.bundle, but is globally available within your app so you can change whatever setting you'd like at any point.
DESC
s.homepage = "https://github.com/Raizlabs/RZDebugMenu"
s.license = { :type => "MIT" }
s.author = { "Clayton Rieck" => "cjrieck123@gmail.com", "Nick Donalodson" => "ndonald2@gmail.com", "Michael Gorbach" => "michael.gorbach@raizlabs.com" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/Raizlabs/RZDebugMenu.git", :tag => s.version.to_s }
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
s.dependency 'FXForms', '~>1.2'
end