Sha256: deffa2c6e7684e48be986cd492e6852304736c5f10179ad087c8c6a7cf44c8bd
Contents?: true
Size: 305 Bytes
Versions: 63
Compression:
Stored size: 305 Bytes
Contents
module Expressir module Model module Types class Binary < ModelElement attr_accessor :width attr_accessor :fixed def initialize(options = {}) @width = options[:width] @fixed = options[:fixed] super end end end end end
Version data entries
63 entries across 63 versions & 1 rubygems