Sha256: 2459965375232bce4583fa9c48b19f6c8d39990c1678b258f47c9893ec13af19
Contents?: true
Size: 320 Bytes
Versions: 14
Compression:
Stored size: 320 Bytes
Contents
module Rambo module RamlModels class Response attr_reader :schema def initialize(raml) @schema = raml end def status_code schema.code end def bodies @bodies ||= schema.bodies.map {|body| Rambo::RamlModels::Body.new(body) } end end end end
Version data entries
14 entries across 14 versions & 1 rubygems