-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby.json
More file actions
66 lines (66 loc) · 1.66 KB
/
Copy pathruby.json
File metadata and controls
66 lines (66 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"tool": "ruby",
"displayName": "Ruby",
"detection": {
"commands": ["ruby", "gem", "bundle", "rake", "rails"],
"paths": ["/usr/bin/ruby", "/opt/homebrew/bin/ruby"]
},
"caches": [
{
"id": "gem-cache",
"path": "~/.gem",
"type": "packages",
"description": "RubyGems user installation directory",
"safeToDelete": false,
"requiresConfirmation": true
},
{
"id": "bundler-cache",
"path": "~/.bundle/cache",
"type": "packages",
"description": "Bundler gem cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "bundle",
"args": ["clean"]
}
},
{
"id": "cocoapods-cache",
"path": "~/Library/Caches/CocoaPods",
"type": "packages",
"description": "CocoaPods spec and pod cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "pod",
"args": ["cache", "clean", "--all"]
}
},
{
"id": "fastlane-cache",
"path": "~/.fastlane",
"type": "buildArtifacts",
"description": "Fastlane build automation cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "rvm-cache",
"path": "~/.rvm/archives",
"type": "packages",
"description": "RVM Ruby version archives",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "rbenv-cache",
"path": "~/.rbenv/cache",
"type": "packages",
"description": "rbenv Ruby installation cache",
"safeToDelete": true,
"requiresConfirmation": false
}
]
}