Sha256: c4ffa9fff9e9572ddbc356771559e4e59a99a70f3b09e182c18a1c217601a3c4
Contents?: true
Size: 305 Bytes
Versions: 63
Compression:
Stored size: 305 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] super end end end end end
Version data entries
63 entries across 63 versions & 1 rubygems