Sha256: 6e066df5c30f5796a6fe6ef3e674b0c5dd88b2338a33bc6970c3bd04fff48d92

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

# frozen_string_literal: true

require_relative "lib/lutaml/xmi/version"

Gem::Specification.new do |spec|
  spec.name          = "lutaml-xmi"
  spec.version       = Lutaml::XMI::VERSION
  spec.authors       = ["Ribose Inc."]
  spec.email         = ["open.source@ribose.com'"]

  spec.summary       = "XML Metadata Interchange (XMI) Specification parser in Ruby, tools for accessing EXPRESS data models."
  spec.description   = "XML Metadata Interchange (XMI) Specification parser in Ruby, tools for accessing EXPRESS data models."
  spec.homepage      = "https://github.com/lutaml/lutaml-xmi"
  spec.license       = "MIT"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = "https://github.com/lutaml/lutaml-xmi/releases"

  spec.files         = `git ls-files`.split("\n")
  spec.test_files    = `git ls-files -- {spec}/*`.split("\n")

  spec.bindir        = "exe"
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "hashie", "~> 4.1.0"
  spec.add_runtime_dependency "thor", "~> 1.0"
  spec.add_runtime_dependency "lutaml-uml"
  spec.add_runtime_dependency "nokogiri", "~> 1.10"

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "pry", "~> 0.12.2"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "rubocop", "~> 0.54.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lutaml-xmi-0.2.1 lutaml-xmi.gemspec
lutaml-xmi-0.2.0 lutaml-xmi.gemspec
lutaml-xmi-0.1.5 lutaml-xmi.gemspec