web-console 4.0.0 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.markdown +36 -6
- data/README.markdown +4 -3
- data/lib/web_console/injector.rb +5 -3
- data/lib/web_console/permissions.rb +1 -1
- data/lib/web_console/railtie.rb +16 -3
- data/lib/web_console/template.rb +1 -1
- data/lib/web_console/templates/console.js.erb +24 -6
- data/lib/web_console/templates/layouts/javascript.erb +1 -1
- data/lib/web_console/templates/style.css.erb +182 -34
- data/lib/web_console/version.rb +1 -1
- data/lib/web_console/view.rb +1 -0
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e582f6eaaeff0b5fd7bedde53a6101c43eb8b5b86cda5f2a0e5a535b10c7bfc
|
4
|
+
data.tar.gz: 5ed7fe9a6bbb404eb7c1a9d4e594a559ca7e65f5184f342a1882cb33152aac2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9805b430a93e04d8b1865efbb1c10824cd198f79fe8ba3bb2e4b934de2eed777f09c13200d3f07a4db82cf09285c8ea6e60b505186d86ac0d52e45ab937f3130
|
7
|
+
data.tar.gz: ac73f59d7603a019b5a0c96cb7d2583ee8280198dbd719a071c7b77af71650cfd7333c7bb481f98552ba7ed933ddbc3ee00e235292a4c337e2520d71e10975a9
|
data/CHANGELOG.markdown
CHANGED
@@ -2,14 +2,38 @@
|
|
2
2
|
|
3
3
|
## master (unreleased)
|
4
4
|
|
5
|
+
## 4.1.0
|
6
|
+
|
7
|
+
* [#304](https://github.com/rails/web-console/pull/304) Add support for Rails 6.1 ([@stephannv])
|
8
|
+
* [#298](https://github.com/rails/web-console/pull/298) Prevent deprecation warnings by removing template formats ([@mikelkew])
|
9
|
+
* [#297](https://github.com/rails/web-console/pull/297) Use MutationObserver instead of Mutation Events ([@mikelkew])
|
10
|
+
* [#296](https://github.com/rails/web-console/pull/296) Add CSP nonce to injected scripts and styles ([@mikelkew])
|
11
|
+
|
12
|
+
## 4.0.4
|
13
|
+
|
14
|
+
* [fb483743](https://github.com/rails/web-console/commit/fb483743a6a2a4168cdc0b2e03f48fc393991b73) Fix a crash on webrick with Rack 2.2.3 ([@gsamokovarov])
|
15
|
+
|
16
|
+
## 4.0.3
|
17
|
+
|
18
|
+
* [#291](https://github.com/rails/web-console/pull/291) Deprecate config.web_console.whitelisted_ips ([@JuanitoFatas])
|
19
|
+
* [#290](https://github.com/rails/web-console/pull/290) Fix Content-Length for rack >= 2.1.0 ([@p8])
|
20
|
+
|
21
|
+
## 4.0.2
|
22
|
+
|
23
|
+
* [#285](https://github.com/rails/web-console/pull/285) Increase timeout on paste ([@celvro])
|
24
|
+
|
25
|
+
## 4.0.1
|
26
|
+
|
27
|
+
* [#279](https://github.com/rails/web-console/pull/279) Fix initial config.web_console.permissions value ([@patorash])
|
28
|
+
|
5
29
|
## 4.0.0
|
6
30
|
|
7
|
-
* [
|
8
|
-
* [
|
9
|
-
* [
|
10
|
-
* [
|
11
|
-
* [
|
12
|
-
* [
|
31
|
+
* [61ce65b5](https://github.com/rails/web-console/commit/61ce65b599f56809de1bd8da6590a80acbd92017) Move to config.web_console.permissions ([@gsamokovarov])
|
32
|
+
* [96127ac1](https://github.com/rails/web-console/commit/96127aac143e1e653fffdc4bb65e1ce0b5ff342d) Introduce Binding#console as an alternative interface ([@gsamokovarov])
|
33
|
+
* [d4591ca5](https://github.com/rails/web-console/commit/d4591ca5396ed15a08818f3da11134852a485b27) Introduce Rails 6 support ([@gsamokovarov])
|
34
|
+
* [f97d8a88](https://github.com/rails/web-console/commit/f97d8a889a38366485e5c5e8985995c19bf61d13) Introduce Ruby 2.6 support ([@gsamokovarov])
|
35
|
+
* [d6deacd9](https://github.com/rails/web-console/commit/d6deacd9d5fcaabf3e3051d6985b53f924f86956) Drop Rails 5 support ([@gsamokovarov])
|
36
|
+
* [90fda878](https://github.com/rails/web-console/commit/90fda8789d402f05647c18f8cdf8e5c3d01692dd) Drop Ruby 2.4 support ([@gsamokovarov])
|
13
37
|
* [#265](https://github.com/rails/web-console/pull/265) Add support for nested exceptions ([@yuki24])
|
14
38
|
|
15
39
|
## 3.7.0
|
@@ -128,6 +152,8 @@ go to 3.1.0 instead.
|
|
128
152
|
* [#84](https://github.com/rails/web-console/pull/84) Allow Rails 5 as dependency in gemspec ([@jonatack])
|
129
153
|
* [#69](https://github.com/rails/web-console/pull/69) Introduce middleware for request dispatch and console rendering ([@gsamokovarov])
|
130
154
|
|
155
|
+
[@stephannv]: https://github.com/stephannv
|
156
|
+
[@mikelkew]: https://github.com/mikelkew
|
131
157
|
[@jonatack]: https://github.com/jonatack
|
132
158
|
[@ryandao]: https://github.com/ryandao
|
133
159
|
[@jeffnv]: https://github.com/jeffnv
|
@@ -149,3 +175,7 @@ go to 3.1.0 instead.
|
|
149
175
|
[@timomeh]: https://github.com/timomeh
|
150
176
|
[@causztic]: https://github.com/causztic
|
151
177
|
[@yuki24]: https://github.com/yuki24
|
178
|
+
[@patorash]: https://github.com/patorash
|
179
|
+
[@celvro]: https://github.com/celvro
|
180
|
+
[@JuanitoFatas]: https://github.com/JuanitoFatas
|
181
|
+
[@p8]: https://github.com/p8
|
data/README.markdown
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
<p align=right>
|
2
|
-
Documentation for:
|
2
|
+
<strong>Current version: 4.1.0</strong> Documentation for:
|
3
3
|
<a href=https://github.com/rails/web-console/tree/v1.0.4>v1.0.4</a>
|
4
4
|
<a href=https://github.com/rails/web-console/tree/v2.2.1>v2.2.1</a>
|
5
|
+
<a href=https://github.com/rails/web-console/tree/v3.7.0>v3.7.0</a>
|
5
6
|
</p>
|
6
7
|
|
7
8
|
# Web Console [](https://travis-ci.org/rails/web-console)
|
@@ -66,7 +67,7 @@ By default, only requests coming from IPv4 and IPv6 localhosts are allowed.
|
|
66
67
|
`config.web_console.permissions` lets you control which IP's have access to
|
67
68
|
the console.
|
68
69
|
|
69
|
-
You can
|
70
|
+
You can allow single IP's or whole networks. Say you want to share your
|
70
71
|
console with `192.168.0.100`:
|
71
72
|
|
72
73
|
```ruby
|
@@ -75,7 +76,7 @@ class Application < Rails::Application
|
|
75
76
|
end
|
76
77
|
```
|
77
78
|
|
78
|
-
If you want to
|
79
|
+
If you want to allow the whole private network:
|
79
80
|
|
80
81
|
```ruby
|
81
82
|
Rails.application.configure do
|
data/lib/web_console/injector.rb
CHANGED
@@ -13,9 +13,11 @@ module WebConsole
|
|
13
13
|
end
|
14
14
|
|
15
15
|
def inject(content)
|
16
|
-
#
|
17
|
-
# the
|
18
|
-
@headers
|
16
|
+
# Set Content-Length header to the size of the current body
|
17
|
+
# + the extra content. Otherwise the response will be truncated.
|
18
|
+
if @headers["Content-Length"]
|
19
|
+
@headers["Content-Length"] = (@body.bytesize + content.bytesize).to_s
|
20
|
+
end
|
19
21
|
|
20
22
|
[
|
21
23
|
if position = @body.rindex("</body>")
|
data/lib/web_console/railtie.rb
CHANGED
@@ -5,7 +5,6 @@ require "rails/railtie"
|
|
5
5
|
module WebConsole
|
6
6
|
class Railtie < ::Rails::Railtie
|
7
7
|
config.web_console = ActiveSupport::OrderedOptions.new
|
8
|
-
config.web_console.permissions = %w( 127.0.0.1 ::1 )
|
9
8
|
|
10
9
|
initializer "web_console.initialize" do
|
11
10
|
require "bindex"
|
@@ -53,8 +52,22 @@ module WebConsole
|
|
53
52
|
end
|
54
53
|
|
55
54
|
initializer "web_console.permissions" do
|
56
|
-
|
57
|
-
|
55
|
+
permissions = web_console_permissions
|
56
|
+
Request.permissions = Permissions.new(permissions)
|
57
|
+
end
|
58
|
+
|
59
|
+
def web_console_permissions
|
60
|
+
case
|
61
|
+
when config.web_console.permissions
|
62
|
+
config.web_console.permissions
|
63
|
+
when config.web_console.allowed_ips
|
64
|
+
config.web_console.allowed_ips
|
65
|
+
when config.web_console.whitelisted_ips
|
66
|
+
ActiveSupport::Deprecation.warn(<<-MSG.squish)
|
67
|
+
The config.web_console.whitelisted_ips is deprecated and will be ignored in future release of web_console.
|
68
|
+
Please use config.web_console.allowed_ips instead.
|
69
|
+
MSG
|
70
|
+
config.web_console.whitelisted_ips
|
58
71
|
end
|
59
72
|
end
|
60
73
|
|
data/lib/web_console/template.rb
CHANGED
@@ -17,7 +17,7 @@ module WebConsole
|
|
17
17
|
|
18
18
|
# Render a template (inferred from +template_paths+) as a plain string.
|
19
19
|
def render(template)
|
20
|
-
view = View.
|
20
|
+
view = View.with_empty_template_cache.with_view_paths(template_paths, instance_values)
|
21
21
|
view.render(template: template, layout: false)
|
22
22
|
end
|
23
23
|
end
|
@@ -251,12 +251,14 @@ Autocomplete.prototype.removeView = function() {
|
|
251
251
|
}
|
252
252
|
|
253
253
|
// HTML strings for dynamic elements.
|
254
|
-
var consoleInnerHtml = <%= render_inlined_string '_inner_console_markup
|
255
|
-
var promptBoxHtml = <%= render_inlined_string '_prompt_box_markup
|
254
|
+
var consoleInnerHtml = <%= render_inlined_string '_inner_console_markup' %>;
|
255
|
+
var promptBoxHtml = <%= render_inlined_string '_prompt_box_markup' %>;
|
256
256
|
// CSS
|
257
|
-
var consoleStyleCss = <%= render_inlined_string 'style
|
257
|
+
var consoleStyleCss = <%= render_inlined_string 'style' %>;
|
258
258
|
// Insert a style element with the unique ID
|
259
259
|
var styleElementId = 'sr02459pvbvrmhco';
|
260
|
+
// Nonce to use for CSP
|
261
|
+
var styleElementNonce = '<%= @nonce %>';
|
260
262
|
|
261
263
|
// REPLConsole Constructor
|
262
264
|
function REPLConsole(config) {
|
@@ -380,8 +382,13 @@ REPLConsole.prototype.install = function(container) {
|
|
380
382
|
var clientHeightStart = consoleOuter.clientHeight;
|
381
383
|
|
382
384
|
var doDrag = function(e) {
|
383
|
-
|
385
|
+
var height = startHeight + startY - e.clientY;
|
384
386
|
consoleOuter.scrollTop = scrollTopStart + (clientHeightStart - consoleOuter.clientHeight);
|
387
|
+
if (height > document.documentElement.clientHeight) {
|
388
|
+
container.style.height = document.documentElement.clientHeight;
|
389
|
+
} else {
|
390
|
+
container.style.height = height + 'px';
|
391
|
+
}
|
385
392
|
shiftConsoleActions();
|
386
393
|
};
|
387
394
|
|
@@ -411,6 +418,14 @@ REPLConsole.prototype.install = function(container) {
|
|
411
418
|
}
|
412
419
|
}
|
413
420
|
|
421
|
+
var observer = new MutationObserver(function(mutationsList) {
|
422
|
+
for (let mutation of mutationsList) {
|
423
|
+
if (mutation.type === 'childList' && mutation.addedNodes.length > 0) {
|
424
|
+
shiftConsoleActions();
|
425
|
+
}
|
426
|
+
}
|
427
|
+
});
|
428
|
+
|
414
429
|
// Initialize
|
415
430
|
this.container = container;
|
416
431
|
this.outer = consoleOuter;
|
@@ -422,7 +437,7 @@ REPLConsole.prototype.install = function(container) {
|
|
422
437
|
|
423
438
|
findChild(container, 'resizer').addEventListener('mousedown', resizeContainer);
|
424
439
|
findChild(consoleActions, 'close-button').addEventListener('click', closeContainer);
|
425
|
-
|
440
|
+
observer.observe(consoleOuter, { childList: true, subtree: true });
|
426
441
|
|
427
442
|
REPLConsole.currentSession = this;
|
428
443
|
};
|
@@ -436,6 +451,9 @@ REPLConsole.prototype.insertCss = function() {
|
|
436
451
|
style.type = 'text/css';
|
437
452
|
style.innerHTML = consoleStyleCss;
|
438
453
|
style.id = styleElementId;
|
454
|
+
if (styleElementNonce.length > 0) {
|
455
|
+
style.nonce = styleElementNonce;
|
456
|
+
}
|
439
457
|
document.getElementsByTagName('head')[0].appendChild(style);
|
440
458
|
};
|
441
459
|
|
@@ -755,7 +773,7 @@ REPLConsole.prototype.onKeyDown = function(ev) {
|
|
755
773
|
_this.addToInput(_this.clipboard.value);
|
756
774
|
_this.clipboard.value = "";
|
757
775
|
_this.clipboard.blur();
|
758
|
-
},
|
776
|
+
}, 100);
|
759
777
|
}
|
760
778
|
}
|
761
779
|
|
@@ -1,34 +1,182 @@
|
|
1
|
-
.console .pos-absolute {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
.console .
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
.console .
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
.console .
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
.console .
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
.console .
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
.console .
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
.console
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
1
|
+
.console .pos-absolute {
|
2
|
+
position: absolute;
|
3
|
+
}
|
4
|
+
|
5
|
+
.console .pos-fixed {
|
6
|
+
position: fixed;
|
7
|
+
}
|
8
|
+
|
9
|
+
.console .pos-right {
|
10
|
+
right: 0;
|
11
|
+
}
|
12
|
+
|
13
|
+
.console .border-box {
|
14
|
+
box-sizing: border-box;
|
15
|
+
}
|
16
|
+
|
17
|
+
.console .layer {
|
18
|
+
width: 100%;
|
19
|
+
height: 100%;
|
20
|
+
}
|
21
|
+
|
22
|
+
.console .layer.console-outer {
|
23
|
+
z-index: 1;
|
24
|
+
}
|
25
|
+
|
26
|
+
.console .layer.resizer {
|
27
|
+
z-index: 2;
|
28
|
+
}
|
29
|
+
|
30
|
+
.console {
|
31
|
+
position: fixed;
|
32
|
+
left: 0;
|
33
|
+
bottom: 0;
|
34
|
+
width: 100%;
|
35
|
+
height: 148px;
|
36
|
+
padding: 0;
|
37
|
+
margin: 0;
|
38
|
+
background: none repeat scroll 0% 0% #333;
|
39
|
+
z-index: 9999;
|
40
|
+
}
|
41
|
+
|
42
|
+
.console .console-outer {
|
43
|
+
overflow: auto;
|
44
|
+
padding-top: 4px;
|
45
|
+
}
|
46
|
+
|
47
|
+
.console .console-inner {
|
48
|
+
font-family: monospace;
|
49
|
+
font-size: 11px;
|
50
|
+
width: 100%;
|
51
|
+
height: 100%;
|
52
|
+
overflow: unset;
|
53
|
+
background: #333;
|
54
|
+
}
|
55
|
+
|
56
|
+
.console .console-prompt-box {
|
57
|
+
color: #fff;
|
58
|
+
}
|
59
|
+
|
60
|
+
.console .console-message {
|
61
|
+
color: #1ad027;
|
62
|
+
margin: 0;
|
63
|
+
border: 0;
|
64
|
+
white-space: pre-wrap;
|
65
|
+
background-color: #333;
|
66
|
+
padding: 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
.console .console-message.error-message {
|
70
|
+
color: #fc9;
|
71
|
+
}
|
72
|
+
|
73
|
+
.console .console-message.notification-message {
|
74
|
+
color: #99f;
|
75
|
+
}
|
76
|
+
|
77
|
+
.console .console-message.auto-complete {
|
78
|
+
word-break: break-all;
|
79
|
+
}
|
80
|
+
|
81
|
+
.console .console-message.auto-complete .keyword {
|
82
|
+
margin-right: 11px;
|
83
|
+
}
|
84
|
+
|
85
|
+
.console .console-message.auto-complete .keyword.selected {
|
86
|
+
background: #fff;
|
87
|
+
color: #000;
|
88
|
+
}
|
89
|
+
|
90
|
+
.console .console-message.auto-complete .hidden {
|
91
|
+
display: none;
|
92
|
+
}
|
93
|
+
|
94
|
+
.console .console-message.auto-complete .trimmed {
|
95
|
+
display: none;
|
96
|
+
}
|
97
|
+
|
98
|
+
.console .console-hint {
|
99
|
+
color: #096;
|
100
|
+
}
|
101
|
+
|
102
|
+
.console .console-focus .console-cursor {
|
103
|
+
background: #fefefe;
|
104
|
+
color: #333;
|
105
|
+
font-weight: bold;
|
106
|
+
}
|
107
|
+
|
108
|
+
.console .resizer {
|
109
|
+
background: #333;
|
110
|
+
width: 100%;
|
111
|
+
height: 4px;
|
112
|
+
cursor: ns-resize;
|
113
|
+
}
|
114
|
+
|
115
|
+
.console .console-actions {
|
116
|
+
padding-right: 3px;
|
117
|
+
}
|
118
|
+
|
119
|
+
.console .console-actions .button {
|
120
|
+
float: left;
|
121
|
+
}
|
122
|
+
|
123
|
+
.console .button {
|
124
|
+
cursor: pointer;
|
125
|
+
border-radius: 1px;
|
126
|
+
font-family: monospace;
|
127
|
+
font-size: 13px;
|
128
|
+
width: 14px;
|
129
|
+
height: 14px;
|
130
|
+
line-height: 14px;
|
131
|
+
text-align: center;
|
132
|
+
color: #ccc;
|
133
|
+
}
|
134
|
+
|
135
|
+
.console .button:hover {
|
136
|
+
background: #666;
|
137
|
+
color: #fff;
|
138
|
+
}
|
139
|
+
|
140
|
+
.console .button.close-button:hover {
|
141
|
+
background: #966;
|
142
|
+
}
|
143
|
+
|
144
|
+
.console .clipboard {
|
145
|
+
height: 0px;
|
146
|
+
padding: 0px;
|
147
|
+
margin: 0px;
|
148
|
+
width: 0px;
|
149
|
+
margin-left: -1000px;
|
150
|
+
}
|
151
|
+
|
152
|
+
.console .console-prompt-label {
|
153
|
+
display: inline;
|
154
|
+
color: #fff;
|
155
|
+
background: none repeat scroll 0% 0% #333;
|
156
|
+
border: 0;
|
157
|
+
padding: 0;
|
158
|
+
}
|
159
|
+
|
160
|
+
.console .console-prompt-display {
|
161
|
+
display: inline;
|
162
|
+
color: #fff;
|
163
|
+
background: none repeat scroll 0% 0% #333;
|
164
|
+
border: 0;
|
165
|
+
padding: 0;
|
166
|
+
}
|
167
|
+
|
168
|
+
.console.full-screen {
|
169
|
+
height: 100%;
|
170
|
+
}
|
171
|
+
|
172
|
+
.console.full-screen .console-outer {
|
173
|
+
padding-top: 3px;
|
174
|
+
}
|
175
|
+
|
176
|
+
.console.full-screen .resizer {
|
177
|
+
display: none;
|
178
|
+
}
|
179
|
+
|
180
|
+
.console.full-screen .close-button {
|
181
|
+
display: none;
|
182
|
+
}
|
data/lib/web_console/version.rb
CHANGED
data/lib/web_console/view.rb
CHANGED
@@ -22,6 +22,7 @@ module WebConsole
|
|
22
22
|
# leaking globals, unless you explicitly want to.
|
23
23
|
def render_javascript(template)
|
24
24
|
assign(template: template)
|
25
|
+
assign(nonce: @env["action_dispatch.content_security_policy_nonce"])
|
25
26
|
render(template: template, layout: "layouts/javascript")
|
26
27
|
end
|
27
28
|
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web-console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charlie Somerville
|
8
8
|
- Genadi Samokovarov
|
9
9
|
- Guillermo Iguaran
|
10
10
|
- Ryan Dao
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2020-11-05 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: railties
|
@@ -19,42 +19,42 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 6.0.0
|
22
|
+
version: 6.0.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 6.0.0
|
29
|
+
version: 6.0.0
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: activemodel
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 6.0.0
|
36
|
+
version: 6.0.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 6.0.0
|
43
|
+
version: 6.0.0
|
44
44
|
- !ruby/object:Gem::Dependency
|
45
45
|
name: actionview
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 6.0.0
|
50
|
+
version: 6.0.0
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version: 6.0.0
|
57
|
+
version: 6.0.0
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: bindex
|
60
60
|
requirement: !ruby/object:Gem::Requirement
|
@@ -69,7 +69,7 @@ dependencies:
|
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
71
|
version: 0.4.0
|
72
|
-
description:
|
72
|
+
description:
|
73
73
|
email:
|
74
74
|
- charlie@charliesomerville.com
|
75
75
|
- gsamokovarov@gmail.com
|
@@ -123,7 +123,7 @@ homepage: https://github.com/rails/web-console
|
|
123
123
|
licenses:
|
124
124
|
- MIT
|
125
125
|
metadata: {}
|
126
|
-
post_install_message:
|
126
|
+
post_install_message:
|
127
127
|
rdoc_options: []
|
128
128
|
require_paths:
|
129
129
|
- lib
|
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
139
|
version: '0'
|
140
140
|
requirements: []
|
141
141
|
rubygems_version: 3.0.3
|
142
|
-
signing_key:
|
142
|
+
signing_key:
|
143
143
|
specification_version: 4
|
144
144
|
summary: A debugging tool for your Ruby on Rails applications.
|
145
145
|
test_files: []
|