Sha256: 480b18d3e71004827a2345d884c2747d51b48152fc4a0f8728aa40d0326102fe
Contents?: true
Size: 413 Bytes
Versions: 171
Compression:
Stored size: 413 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
171 entries across 171 versions & 1 rubygems