Method: HttpStub::Server::Stub::Response::Body.create

Defined in:
lib/http_stub/server/stub/response/body.rb

.create(args) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/http_stub/server/stub/response/body.rb', line 8

def self.create(args)
  if args[:body].is_a?(Hash)
    HttpStub::Server::Stub::Response::FileBody.new(args[:body])
  else
    HttpStub::Server::Stub::Response::TextBody.new(args)
  end
end