Sha256: 509c817fb585661cf507b296ac78ca96ca9e6b072f1b7701135842d8d8cedfdd
Contents?: true
Size: 516 Bytes
Versions: 13
Compression:
Stored size: 516 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
13 entries across 13 versions & 1 rubygems