Sha256: a38c75e41fa262afbfadc4f7bd6094a6c512fd98c277092b2a74e15616189a4d
Contents?: true
Size: 329 Bytes
Versions: 63
Compression:
Stored size: 329 Bytes
Contents
module Expressir module Model module Expressions class AttributeReference < ModelElement attr_accessor :ref attr_accessor :attribute def initialize(options = {}) @ref = options[:ref] @attribute = options[:attribute] super end end end end end
Version data entries
63 entries across 63 versions & 1 rubygems