File: mdl.gemspec

package info (click to toggle)
ruby-mdl 0.15.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 192 kB
  • sloc: ruby: 1,405; sh: 10; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 961 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mdl/version'

Gem::Specification.new do |spec|
  spec.name = 'mdl'
  spec.version = MarkdownLint::VERSION
  spec.authors = ['Mark Harrison']
  spec.email = ['mark@mivok.net']
  spec.summary = 'Markdown lint tool'
  spec.description = 'Style checker/lint tool for markdown files'
  spec.homepage = 'https://github.com/markdownlint/markdownlint'
  spec.license = 'MIT'
  spec.metadata['rubygems_mfa_required'] = 'true'

  spec.files = %w{LICENSE.txt Gemfile} + Dir.glob('*.gemspec') +
               Dir.glob('lib/**/*')
  spec.bindir = 'bin'
  spec.executables = %w{mdl}
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 3.2'

  spec.add_dependency 'kramdown', '~> 2.3'
  spec.add_dependency 'kramdown-parser-gfm', '~> 1.1'
  spec.add_dependency 'mixlib-cli'
  spec.add_dependency 'mixlib-config'
  spec.add_dependency 'mixlib-shellout'
end