2009-05-22 21:01:23 +00:00
|
|
|
module SshfsMapper
|
|
|
|
class Map
|
2009-06-12 15:49:30 +00:00
|
|
|
def initialize( map_path )
|
|
|
|
@path = map_path
|
2009-05-22 21:01:23 +00:00
|
|
|
@host = nil
|
|
|
|
@port = 22
|
|
|
|
@user = nil
|
|
|
|
end
|
|
|
|
|
2009-06-12 15:49:30 +00:00
|
|
|
def parse()
|
|
|
|
puts "Parsing #{@path}"
|
|
|
|
end
|
2009-05-22 21:01:23 +00:00
|
|
|
end
|
2009-04-03 16:27:49 +00:00
|
|
|
end
|