Sha256: 3c8aa461199ba1da1460751d429df6e4a2c4b06c9957600ca64630bc550b5737
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true require_relative "lib/vectory/version" Gem::Specification.new do |spec| spec.name = "vectory" spec.version = Vectory::VERSION spec.authors = ["Ribose Inc."] spec.email = ["open.source@ribose.com"] spec.summary = "Pairwise vector image conversions." spec.description = <<~DESCRIPTION Vectory performs pairwise vector image conversions for common vector image formats, such as SVG, EMF, EPS and PS. DESCRIPTION spec.homepage = "https://github.com/metanorma/vectory" spec.license = "BSD-2-Clause" spec.bindir = "exe" spec.executables = ["vectory"] spec.require_paths = ["lib"] spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(bin|spec)/}) end spec.test_files = `git ls-files -- {spec}/*`.split("\n") spec.required_ruby_version = ">= 2.5.0" spec.add_runtime_dependency "emf2svg" spec.add_runtime_dependency "marcel", "~> 1.0.0" spec.add_runtime_dependency "nokogiri", "~> 1.14" spec.add_runtime_dependency "thor", "~> 1.2.1" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vectory-0.6.0 | vectory.gemspec |