Sha256: 5a46856932232b5523a87c327a57a4ab4562d47a6184c42c3c4c18d36e4b8ffd
Contents?: true
Size: 414 Bytes
Versions: 13
Compression:
Stored size: 414 Bytes
Contents
module Expressir module Model module Literals # Specified in ISO 10303-11:2004 # - section 7.5.2 Integer literal class Integer < Literal model_attr_accessor :value, "::String" # @param [Hash] options # @option options [::String] :value def initialize(options = {}) @value = options[:value] super end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems