Sha256: 95aae7c64612e63fdacce326789dd7775a64fc2c88bb13a2fc1de31e0f798b14
Contents?: true
Size: 1.26 KB
Versions: 3
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true require_relative "lib/mdcat/version" Gem::Specification.new do |spec| spec.name = "mdcat" spec.version = Mdcat::VERSION spec.authors = ["Daniel Vinciguerra"] spec.email = ["daniel.vinciguerra@bivee.com.br"] spec.summary = "mdcat is a command line tool to cat markdown files with syntax highlight" spec.description = "mdcat is a command line tool to cat markdown files with syntax highlight" spec.homepage = "https://github.com/dvinciguerra/mdcat" spec.license = "MIT" spec.required_ruby_version = ">= 2.7.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = spec.homepage spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end # spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] # Uncomment to register a new dependency of your gem spec.add_dependency "tty-markdown" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mdcat-0.4.0 | mdcat.gemspec |
mdcat-0.3.0 | mdcat.gemspec |
mdcat-0.2.0 | mdcat.gemspec |