Sha256: 4601c945332056eafc0635c697a336d9fdb4c39a69a84c6e9c87e643ff017581
Contents?: true
Size: 352 Bytes
Versions: 29
Compression:
Stored size: 352 Bytes
Contents
module Expressir module Model module Types class Set attr_accessor :bound1 attr_accessor :bound2 attr_accessor :base_type def initialize(options = {}) @bound1 = options[:bound1] @bound2 = options[:bound2] @base_type = options[:base_type] end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems