mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
501 B
Ruby
20 lines
501 B
Ruby
module Fog
|
|
module Vcloud
|
|
if false
|
|
class Fog::Connection
|
|
def request(params, &block)
|
|
path = File.expand_path(File.join(File.dirname(__FILE__),'..','..','data',params[:path].gsub(/^\//,'').gsub('/','_+_')))
|
|
if File.exists?(path)
|
|
body = File.read(path)
|
|
else
|
|
''
|
|
end
|
|
Excon::Response.new(
|
|
:body => body,
|
|
:status => 200,
|
|
:header => '')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|