File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ## 3.1.0
6
+
7
+ * [ #182 ] ( https://github.com/rails/web-console/pull/182 ) Let ` #console ` live in ` Kernel ` ([ @gsamokovarov ] )
8
+ * [ #181 ] ( https://github.com/rails/web-console/pull/181 ) Log internal Web Console errors ([ @gsamokovarov ] )
9
+ * [ #180 ] ( https://github.com/rails/web-console/pull/180 ) Autoload Web Console constants for faster Rails boot time ([ @schneems ] )
10
+
5
11
## 3.0.0
6
12
7
13
* [ #173 ] ( https://github.com/rails/web-console/pull/173 ) Revert "Change config.development_only default until 4.2.4 is released" ([ @gsamokovarov ] )
55
61
[ @parterburn ] : https://github.com/parterburn
56
62
[ @sh19910711 ] : https://github.com/sh19910711
57
63
[ @frenesim ] : https://github.com/frenesim
64
+ [ @herminiotorres ] : https://github.com/herminiotorres
65
+ [ @schneems ] : https://github.com/schneems
Original file line number Diff line number Diff line change @@ -67,8 +67,10 @@ class PostsController < ApplicationController
67
67
end
68
68
```
69
69
70
- Only one ` console ` invocation is allowed per request. If you happen to have
71
- multiple ones, a ` WebConsole::DoubleRenderError ` is raised.
70
+ The method is defined in ` Kernel ` and you can invoke it any application code.
71
+
72
+ Only one ` console ` invocation is allowed once per request. If you happen to
73
+ have multiple ones, a ` WebConsole::DoubleRenderError ` will be raised.
72
74
73
75
## Configuration
74
76
Original file line number Diff line number Diff line change 1
1
module WebConsole
2
- VERSION = '3.0 .0'
2
+ VERSION = '3.1 .0'
3
3
end
You can’t perform that action at this time.
0 commit comments