redjazz96/nova

View on GitHub
lib/nova/remote.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'nova/remote/part'

module Nova

  # Classes to handle running commands on platforms.
  module Remote

    if ENV["NOVA_ENV"] == "testing"
      require 'nova/remote/fake'
      require 'nova/remote/local'
    else
      autoload :Fake, "nova/remote/fake"
      autoload :Local, "nova/remote/local"
      #autoload :SSH, "nova/remote/ssh"
    end

  end
end