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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MDM1MzljMDVjYTk2ZjlkOWM5ZDhmY2Y0MzhmZWZjZTViMDI4ZTM4Zg==
4
+ NzVkMGQ5ZWRmN2MwMmJhMDM0ZmIxYjAwMDY3Y2E1OGRkYjdjMmY4Mg==
5
5
  data.tar.gz: !binary |-
6
- ODI3MmViMDJhYjEwYjU2ZmMxNTMzMGQ2MjZlNmUzYzFjNWIwOGY1Mg==
6
+ NWExMDcyOTU0MjhjMjY3NDAzM2U5YWRmMmEyMzg1ZTQ1YWU5ZjAwNg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NmEyNmQ4YmJlNDYxMzA1NWE5ZTA0ZmY4MjU2YjYzM2QxNTg4N2UyMTJlNzU4
10
- MGM3NTIxNTg3YmJmZjk3NWFkOGRlYTkxOGUwZWU1MGE4YjU5Y2M3MDY0MWVj
11
- NjJjZmIxNjdjMzVkOWFlNzRmNTYzMTY1NjA2NWQ3ZDFkOWJhNjM=
9
+ NmQxYTZiMDlmYTBkMjA3MDllZjdkNTg2Njg3ZDIzMDM4YWMwNmRmY2FlZmZk
10
+ NmE0MjhkZTAzOTEwYzE5Y2VhMjk5ZTYwZjE4MTNkY2RhMTFjYzEwNzA2ZGQx
11
+ NDJhZDJlNmZkZDk1MWExODcxYTVlMzAyZTIyOWUzNTcxNmI4ZGE=
12
12
  data.tar.gz: !binary |-
13
- Y2FkNzZjZmQyNjNmM2U5NDk1MzI3MjRkODYyNzQ2MTIwOTllNmFiY2UxMzM3
14
- OTdiOTA0ZDZhN2QyNGZjODcyMmI1ZWU5NTUwY2E5NDJjNzgzOTZlMGQxMDE2
15
- NjI3ZjYxNDNiNTAyMWQ4MzBmODBmMTcyZDI1ODhhMmNiY2E5YzI=
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.
@@ -314,7 +314,7 @@ Terminal.colors[257] = Terminal.defaultColors.fg;
314
314
  * Options
315
315
  */
316
316
 
317
- Terminal.termName = 'xterm-256color';
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
- // We don't need this because we are controlling the device elsewhere.
1583
- // case 'c':
1584
- // this.sendDeviceAttributes(this.params);
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
 
@@ -22,7 +22,7 @@ module Pssh
22
22
  DEFAULT_IO_MODE = 'rw'
23
23
  DEFAULT_SOCKET_PREFIX = 'pssh'
24
24
  DEFAULT_PORT = 8022
25
- DEFAULT_CACHE_LENGTH = 4096
25
+ DEFAULT_CACHE_LENGTH = 16384
26
26
  PSSH_DOMAIN = 'pssh.herokuapp.com'
27
27
 
28
28
  class << self
@@ -1,4 +1,4 @@
1
1
  module Pssh
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
4
4
 
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.0
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-17 00:00:00.000000000 Z
11
+ date: 2013-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json