-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
76 lines (71 loc) · 2.02 KB
/
extension.json
File metadata and controls
76 lines (71 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
{
"identifier": "jasonplatts.rubygems",
"name": "Ruby Gems",
"organization": "Jason Platts",
"description": "Provides a sidebar with information on gems contained in a project's Gemfile.",
"version": "1.0.1",
"repository":"https://github.com/jasonplatts/nova-ruby-gems",
"bugs":"https://github.com/jasonplatts/nova-ruby-gems/issues",
"funding":"https://github.com/sponsors/jasonplatts",
"categories": ["sidebars"],
"main": "main.js",
"activationEvents": [
"*"
],
"entitlements": {
"filesystem": "readwrite",
"requests": true
},
"config-workspace": [
{
"key": "rubygems.config.section",
"title": "Gemfile Location",
"type": "section",
"children": [
{
"key": "rubygems.workspace.gemfileLocation",
"title": "Gemfile Location",
"description": "The extension automatically searches for a 'Gemfile' within the current workspace. If you wish to specify its location, you may do so here.",
"type": "path"
}
]
}
],
"sidebars": [
{
"id": "ruby-gems",
"name": "Ruby Gems",
"smallImage": "sidebar-small",
"largeImage": "sidebar-large",
"sections": [
{
"id": "rubygems",
"name": "Ruby Gems",
"placeholderText": "No 'Gemfile' detected.",
"placeholderImage": "sidebar-placeholder",
"headerCommands": [
{
"title": "Open Docs",
"tooltip": "Open RubyGems.org site in the browser.",
"image": "__builtin.remote",
"command": "rubygems.openDocs"
},
{
"title": "Refresh",
"image": "__builtin.refresh",
"tooltip": "Refresh",
"command": "rubygems.refresh"
}
],
"contextCommands": [
{
"title": "Open URL",
"command": "rubygems.doubleclick",
"when": "viewItem != null"
}
]
}
]
}
]
}