Sha256: 04af7d08b567735458e09dd8eff3d280229767921d488339f1d3e3730270ed94
Contents?: true
Size: 976 Bytes
Versions: 1
Compression:
Stored size: 976 Bytes
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 = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.files = `git ls-files`.split("\n") spec.required_ruby_version = ">= 2.5.0" spec.add_runtime_dependency "emf2svg" 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.4.1 | vectory.gemspec |