i2cssh 0.0.10 → 1.0.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.
- data/README.markdown +4 -0
- data/VERSION +1 -1
- data/bin/i2cssh +1 -1
- data/i2cssh.gemspec +2 -2
- metadata +4 -4
data/README.markdown
CHANGED
|
@@ -32,6 +32,10 @@ The i2csshrc file is a YAML formatted file that contains the following structure
|
|
|
32
32
|
- host2
|
|
33
33
|
- ...
|
|
34
34
|
|
|
35
|
+
## Known issues
|
|
36
|
+
|
|
37
|
+
- i2cssh uses rb-appscript and that only seems to work on ruby 1.8.7 and breaks on 1.9.x
|
|
38
|
+
|
|
35
39
|
## TODO
|
|
36
40
|
|
|
37
41
|
- Functional parity with csshX (as far as possible)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
1.0.0
|
data/bin/i2cssh
CHANGED
|
@@ -94,7 +94,7 @@ end
|
|
|
94
94
|
term.sessions[i+1].write(:text => "history -d $(($HISTCMD-1)) && #{ssh_prefix}#{servers[i]}")
|
|
95
95
|
else
|
|
96
96
|
term.sessions[i+1].foreground_color.set("red")
|
|
97
|
-
term.sessions[i+1].write(:text => "history -d $(($HISTCMD-1)) && stty -isig -icanon && echo -e '#{"\n"*100}UNUSED' && cat > /dev/null")
|
|
97
|
+
term.sessions[i+1].write(:text => "history -d $(($HISTCMD-1)) && stty -isig -icanon -echo && echo -e '#{"\n"*100}UNUSED' && cat > /dev/null")
|
|
98
98
|
end
|
|
99
99
|
end
|
|
100
100
|
if options[:debug] then
|
data/i2cssh.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{i2cssh}
|
|
8
|
-
s.version = "0.0
|
|
8
|
+
s.version = "1.0.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Wouter de Bie"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-07-11}
|
|
13
13
|
s.default_executable = %q{i2cssh}
|
|
14
14
|
s.description = %q{csshX like cluster ssh using iTerm2 panes}
|
|
15
15
|
s.email = %q{wouter@evenflow.se}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i2cssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
|
+
- 1
|
|
7
8
|
- 0
|
|
8
9
|
- 0
|
|
9
|
-
|
|
10
|
-
version: 0.0.10
|
|
10
|
+
version: 1.0.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Wouter de Bie
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-07-11 00:00:00 +02:00
|
|
19
19
|
default_executable: i2cssh
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|