Sha256: 8189c576fb24d47da06bfc2108007a83901ff1c68a3d54e4a013b6369fcf0f43
Contents?: true
Size: 321 Bytes
Versions: 14
Compression:
Stored size: 321 Bytes
Contents
module Expressir module Model class Repository < ModelElement include Scope attr_accessor :schemas def initialize(options = {}) @schemas = options.fetch(:schemas, []) end def children items = [] items.push(*@schemas) items end end end end
Version data entries
14 entries across 14 versions & 1 rubygems