Sha256: b764c598afa3395a3fa97a484415e6c95a9eda8df4efd5db3f9685864cb6ca85

Contents?: true

Size: 1.27 KB

Versions: 3

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

require_relative "lib/unitsdb/version"

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

  spec.summary = "Ruby library for UnitsDB"
  spec.description = "Library to handle UnitsDB content."
  spec.homepage = "https://github.com/unitsml/unitsdb-ruby"

  spec.license = "BSD-2-Clause"
  spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = "https://github.com/unitsml/unitsdb-ruby/releases"

  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.bindir = "exe"
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.test_files = `git ls-files -- {spec}/*`.split("\n")
  spec.require_paths = ["lib"]

  spec.add_dependency "lutaml-model"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
unitsdb-1.0.0 unitsdb.gemspec
unitsdb-0.1.1 unitsdb.gemspec
unitsdb-0.1.0 unitsdb.gemspec