Sha256: 6de48b19d8058322162a28ba8d9e13abee2cec68b0d785d4044b7eb1acd354f5

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

require_relative "lib/moxml/version"

Gem::Specification.new do |spec|
  spec.name = "moxml"
  spec.version = Moxml::VERSION
  spec.authors = ["Ribose Inc."]
  spec.email = ["open.source@ribose.com"]

  spec.summary = "Unified XML manipulation library"
  spec.description = <<~DESCRIPTION
    Moxml is a unified XML manipulation library that provides a common API.
  DESCRIPTION

  spec.homepage = "https://github.com/lutaml/moxml"
  spec.license = "BSD-2-Clause"

  spec.bindir = "exe"
  spec.require_paths = ["lib"]
  spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the
  # RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      f.match(%r{^(test|spec|features)/})
    end
  end
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

  spec.metadata["rubygems_mfa_required"] = "true"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
moxml-0.1.0 moxml.gemspec