Sha256: 131efc91a8a0e24cc79e74485a589cc6ebc7db5a5a786bed4f7ce59c2789f2b6
Contents?: true
Size: 546 Bytes
Versions: 32
Compression:
Stored size: 546 Bytes
Contents
# frozen_string_literal: true require 'expressir' require 'expressir/express/parser' module Lutaml module Express module Parsers # Class for parsing .exp schema files into Expressir::Model::Repository class Exp # @param [String] io - file object with path to .exp file # [Hash] options - options for parsing # # @return [Expressir::Model::Repository] def self.parse(io, options = {}) Expressir::Express::Parser.from_file(io.path) end end end end end
Version data entries
32 entries across 32 versions & 2 rubygems