Sha256: 90aa722b198141e8d1ccf579fc2799045d33d75002807ea65c42d2b3901d33ed

Contents?: true

Size: 260 Bytes

Versions: 2

Compression:

Stored size: 260 Bytes

Contents

module Rsh
  module Drivers
    class Abstract
      attr_reader :options
    
      def initialize options = {}
        @options = options
      end
        
      def generate_tmp_dir_name
        "/tmp/ssh_tmp_dir_#{rand(10**6)}"
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
vos-0.0.4 lib/rsh/drivers/abstract.rb
vfs-0.0.4 lib/rsh/drivers/abstract.rb