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