i2cssh 0.0.5 → 0.0.6
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 +3 -0
- data/VERSION +1 -1
- data/bin/i2cssh +6 -1
- data/i2cssh.gemspec +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -33,6 +33,9 @@ The i2csshrc file is a YAML formatted file that contains the following structure
|
|
33
33
|
- ...
|
34
34
|
|
35
35
|
## Contributing to i2cssh
|
36
|
+
|
37
|
+
I know that i2cssh doesn't have all the functionality of csshX, but either let me know what you really need or
|
38
|
+
fork, hack and create a pull request.
|
36
39
|
|
37
40
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
38
41
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.6
|
data/bin/i2cssh
CHANGED
@@ -89,7 +89,12 @@ end
|
|
89
89
|
end
|
90
90
|
|
91
91
|
(rows * columns).times do |i|
|
92
|
-
|
92
|
+
if servers && servers[i] then
|
93
|
+
term.sessions[i+1].write(:text => "#{ssh_prefix}#{servers[i]}")
|
94
|
+
else
|
95
|
+
term.sessions[i+1].foreground_color.set("red")
|
96
|
+
term.sessions[i+1].write(:text => "echo -e '#{"\n"*100}UNUSED'")
|
97
|
+
end
|
93
98
|
end
|
94
99
|
if options[:debug] then
|
95
100
|
require 'ripl'
|
data/i2cssh.gemspec
CHANGED
metadata
CHANGED