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