Skip to content

Commit 2f1561f

Browse files
committed
Merge pull request #441 from CGamesPlay/patch-1
Add WINCH to FORWARDED_SIGNALS
2 parents 354637f + 3399795 commit 2f1561f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Add support for client side hooks. `config/spring_client.rb` is loaded before
44
bundler and before a server process is started, it can be used to add new
55
top-level commands.
6+
* Enable terminal resize detection in rails console.
67

78
## 1.3.6
89

lib/spring/client/run.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
module Spring
66
module Client
77
class Run < Command
8-
FORWARDED_SIGNALS = %w(INT QUIT USR1 USR2 INFO) & Signal.list.keys
8+
FORWARDED_SIGNALS = %w(INT QUIT USR1 USR2 INFO WINCH) & Signal.list.keys
99
TIMEOUT = 1
1010

1111
def initialize(args)

0 commit comments

Comments
 (0)