pssh 0.4.0 → 0.4.1
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 +8 -8
- data/README.md +0 -1
- data/assets/term.js +4 -6
- data/lib/pssh.rb +1 -1
- data/lib/pssh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NzVkMGQ5ZWRmN2MwMmJhMDM0ZmIxYjAwMDY3Y2E1OGRkYjdjMmY4Mg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NWExMDcyOTU0MjhjMjY3NDAzM2U5YWRmMmEyMzg1ZTQ1YWU5ZjAwNg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NmQxYTZiMDlmYTBkMjA3MDllZjdkNTg2Njg3ZDIzMDM4YWMwNmRmY2FlZmZk
|
|
10
|
+
NmE0MjhkZTAzOTEwYzE5Y2VhMjk5ZTYwZjE4MTNkY2RhMTFjYzEwNzA2ZGQx
|
|
11
|
+
NDJhZDJlNmZkZDk1MWExODcxYTVlMzAyZTIyOWUzNTcxNmI4ZGE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDAzNjY3YWE3OWU3NWExNmUxZjllYTY1NDViZTNlZWZiNmM2NjIwODY1Yzgz
|
|
14
|
+
ZmJlZTcwNWM1ODM5MmUwODQ3ZjI0NmQ2MzIxMGJiMjBiNmZiNzdiYTE3OWU1
|
|
15
|
+
YjE3MTZjYTM2N2IxYzliN2VjODM0Mjg1YmIzYzJjMzc1ZGNhNjQ=
|
data/README.md
CHANGED
|
@@ -24,7 +24,6 @@ Yup.
|
|
|
24
24
|
It defaults to running on port 8022, but throw in a `-p PORT` flag and you're
|
|
25
25
|
up and running on whatever port. If you're in a tmux or screen session, it'll
|
|
26
26
|
share that. If you're not, no worries. **Pssh has its own session sharing built in.**
|
|
27
|
-
And if you want to use tmux or screen, go right ahead and use the `-c tmux` flag.
|
|
28
27
|
|
|
29
28
|
If you're already in a tmux or screen session, you'll have a pseudo-terminal
|
|
30
29
|
that lets you see who's connected, kick people off, and a few other handy things.
|
data/assets/term.js
CHANGED
|
@@ -314,7 +314,7 @@ Terminal.colors[257] = Terminal.defaultColors.fg;
|
|
|
314
314
|
* Options
|
|
315
315
|
*/
|
|
316
316
|
|
|
317
|
-
Terminal.termName = '
|
|
317
|
+
Terminal.termName = 'rxvt-unicode';
|
|
318
318
|
Terminal.geometry = [80, 24];
|
|
319
319
|
Terminal.cursorBlink = true;
|
|
320
320
|
Terminal.visualBell = false;
|
|
@@ -1579,10 +1579,9 @@ Terminal.prototype.write = function(data) {
|
|
|
1579
1579
|
// Send Device Attributes (Primary DA).
|
|
1580
1580
|
// CSI > P s c
|
|
1581
1581
|
// Send Device Attributes (Secondary DA)
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
// break;
|
|
1582
|
+
case 'c':
|
|
1583
|
+
this.sendDeviceAttributes(this.params);
|
|
1584
|
+
break;
|
|
1586
1585
|
|
|
1587
1586
|
// CSI Pm d
|
|
1588
1587
|
// Line Position Absolute [row] (default = [1,column]) (VPA).
|
|
@@ -2250,7 +2249,6 @@ Terminal.prototype.send = function(data) {
|
|
|
2250
2249
|
self.queue = '';
|
|
2251
2250
|
}, 1);
|
|
2252
2251
|
}
|
|
2253
|
-
|
|
2254
2252
|
this.queue += data;
|
|
2255
2253
|
};
|
|
2256
2254
|
|
data/lib/pssh.rb
CHANGED
data/lib/pssh/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kelly Martin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|