Sha256: 0d3f7ceab36d0ede0859ea31eedcc6b6d64fa70a0ea2cf60f2437c8b5f230a9b
Contents?: true
Size: 362 Bytes
Versions: 19
Compression:
Stored size: 362 Bytes
Contents
# frozen_string_literal: true class EmptyClass end module GrapeSwagger class EmptyModelParser attr_reader :model attr_reader :endpoint def initialize(model, endpoint) @model = model @endpoint = endpoint end def call {} end end end GrapeSwagger.model_parsers.register(GrapeSwagger::EmptyModelParser, EmptyClass)
Version data entries
19 entries across 19 versions & 1 rubygems