Class: Wordmove::Doctor::Ssh
- Inherits:
-
Object
- Object
- Wordmove::Doctor::Ssh
- Defined in:
- lib/wordmove/doctor/ssh.rb
Instance Attribute Summary collapse
-
#logger ⇒ Object
readonly
Returns the value of attribute logger.
Instance Method Summary collapse
- #check! ⇒ Object
-
#initialize ⇒ Ssh
constructor
A new instance of Ssh.
Constructor Details
#initialize ⇒ Ssh
Returns a new instance of Ssh.
6 7 8 |
# File 'lib/wordmove/doctor/ssh.rb', line 6 def initialize @logger = Logger.new(STDOUT).tap { |l| l.level = Logger::INFO } end |
Instance Attribute Details
#logger ⇒ Object (readonly)
Returns the value of attribute logger.
4 5 6 |
# File 'lib/wordmove/doctor/ssh.rb', line 4 def logger @logger end |
Instance Method Details
#check! ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/wordmove/doctor/ssh.rb', line 10 def check! logger.task "Checking SSH client" if system('which ssh', out: File::NULL, err: File::NULL) logger.success "SSH command found" else logger.error "SSH command not found. And belive me: it's really strange it's not there." end end |