-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugScreen.podspec
More file actions
20 lines (17 loc) · 959 Bytes
/
DebugScreen.podspec
File metadata and controls
20 lines (17 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = 'DebugScreen'
spec.version = '2.2.0'
spec.summary = 'A library for quickly creating and customizing an application`s debug screen.'
spec.description = <<-DESC
Allows you to customize your DebugScreen as you want! Available features: server selection, feature toggle managment, custom actions.
DESC
spec.homepage = 'https://github.com/surfstudio/debug-screen-ios'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'Surf' => 'chausov@surf.dev' }
spec.platform = :ios, "13.0"
spec.swift_version = '5.0'
spec.source = { :git => "https://github.com/surfstudio/debug-screen-ios.git", :tag => spec.version.to_s }
spec.source_files = "DebugScreen/**/*.{swift,strings}"
spec.exclude_files = "DebugScreen/DebugScreen.docc/**/*"
spec.resources = "DebugScreen/**/*.{xib,xcassets}"
end