Sha256: 0be960e0d26604812532c09dc2f80fd16399446b7458426fefcc8d0e4fcccc8c
Contents?: true
Size: 452 Bytes
Versions: 5
Compression:
Stored size: 452 Bytes
Contents
# frozen_string_literal: true require_relative "declarations/schema_drop" module Expressir module Liquid class RepositoryDrop < ::Expressir::Liquid::ModelElementDrop def initialize(model) @model = model super end def schemas return [] unless @model.schemas @model.schemas.map do |item| ::Expressir::Liquid::Declarations::SchemaDrop.new(item) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems