Sha256: f04ceed1b304bc998ec7a6f844f4082edca36b4e5fb4d5da7a90f99cd9d77bce
Contents?: true
Size: 255 Bytes
Versions: 7
Compression:
Stored size: 255 Bytes
Contents
# frozen_string_literal: true module Atacama # A description of the signature of the parameter being validated class Parameter attr_reader :name, :type def initialize(name:, type: nil) @name = name @type = type end end end
Version data entries
7 entries across 7 versions & 1 rubygems