-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCheatCodes.podspec
More file actions
43 lines (35 loc) · 1.53 KB
/
CheatCodes.podspec
File metadata and controls
43 lines (35 loc) · 1.53 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
43
Pod::Spec.new do |s|
s.name = 'CheatCodes'
s.version = '0.2.1'
s.summary = 'UIKeyCommand shortcuts for debugging applications in the simulator'
s.description = <<-DESC
CheatCodes is a drop in tool to enable some basic debugging functionality in the simulator by using `UIKeyCommand`.
Currently, it ships with the following already available:
```
Available Cheat Codes:
======================
⌘ + ⇧ + ^ + ↓: Trigger restorable state preservation
⇧ + ^ + d: Print documents directory path
⇧ + ^ + e: Re-enable user interaction
⌘ + ⌥ + f: Reset all first run screens
⇧ + ^ + g: Log in a default user account
⇧ + ^ + h: Print the list of available commands
⇧ + ^ + i: Print general device info
⇧ + ^ + l: Print autolayout backtrace
⇧ + ^ + o: Print the current trait collection (for the main window)
⇧ + ^ + t: Cycle tintAdjustmentMode
⇧ + ^ + u: Print user defaults
```
DESC
s.homepage = 'https://github.com/davelyon/CheatCodes'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dave Lyon' => 'dave@davelyon.net' }
s.source = { :git => 'https://github.com/davelyon/CheatCodes.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/daveisonthego'
s.ios.deployment_target = '8.0'
s.source_files = 'CheatCodes/Classes/**/*'
s.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'CHEAT_${CONFIGURATION}',
'SWIFT_VERSION' => '3.0'
}
end