Sha256: 929068a9cd728ff23d00277a50962b4f163d0044a02b1b57b64d8a10eecaf25d
Contents?: true
Size: 515 Bytes
Versions: 171
Compression:
Stored size: 515 Bytes
Contents
module Expressir module Model module Literals # Specified in ISO 10303-11:2004 # - section 7.5.5 Logical literal class Logical < Literal TRUE = :TRUE FALSE = :FALSE UNKNOWN = :UNKNOWN model_attr_accessor :value, ':TRUE, :FALSE, :UNKNOWN' # @param [Hash] options # @option options [:TRUE, :FALSE, :UNKNOWN] :value def initialize(options = {}) @value = options[:value] super end end end end end
Version data entries
171 entries across 171 versions & 1 rubygems