Sha256: 44bcf4bcf95bf8394335837156d15a35f7c3efd9b144dad7fecc2c0c3e47880e
Contents?: true
Size: 371 Bytes
Versions: 11
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true module SwaggerDocsGenerator module Actions # # Test :tags # # Complete tags field for action class Tags < Actions VALUE = :tags def initialize(data) super(VALUE) complete_hash(data) end private def complete_hash(data) hash[key] = [data] end end end end
Version data entries
11 entries across 11 versions & 1 rubygems