Sha256: c29d6471010f2cc5985bbfeef0b761689a460efe566bf2022e31ee8b15c15cdb
Contents?: true
Size: 988 Bytes
Versions: 2
Compression:
Stored size: 988 Bytes
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'yard/commonmarker/version' Gem::Specification.new do |spec| spec.name = 'yard-commonmarker' spec.version = YARD::CommonMarker::VERSION spec.authors = ['Alex Semyonov'] spec.email = ['alex@semyonov.us'] spec.summary = 'CommonMarker support for YARD' spec.description = 'CommonMark and Markdown markup provider for YARD' spec.homepage = 'https://alsemyonov.gitlab.com/yard-commonmarker/' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'commonmarker', '~> 0.16' spec.add_runtime_dependency 'yard', '~> 0.9' spec.add_development_dependency 'development-toolbox', '~> 0.7' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yard-commonmarker-0.5.0 | yard-commonmarker.gemspec |
yard-commonmarker-0.4.0 | yard-commonmarker.gemspec |