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.
Files changed (5) hide show
  1. data/README.markdown +3 -0
  2. data/VERSION +1 -1
  3. data/bin/i2cssh +6 -1
  4. data/i2cssh.gemspec +1 -1
  5. 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.5
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
- term.sessions[i+1].write(:text => "#{ssh_prefix}#{servers[i]}") if servers && servers[i]
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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{i2cssh}
8
- s.version = "0.0.5"
8
+ s.version = "0.0.6"
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"]
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: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wouter de Bie