-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathasciidoctor-plantuml.gemspec
31 lines (27 loc) · 1.19 KB
/
asciidoctor-plantuml.gemspec
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
30
31
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'asciidoctor_plantuml/version'
Gem::Specification.new do |s|
s.name = 'asciidoctor-plantuml'
s.version = Asciidoctor::PlantUML::VERSION
s.authors = ['Horacio Sanson']
s.email = ['[email protected]']
s.description = 'Asciidoctor PlantUML extension'
s.summary = 'Asciidoctor support for PlantUML diagrams.'
s.platform = Gem::Platform::RUBY
s.homepage = 'https://github.com/hsanson/asciidoctor-plantuml'
s.license = 'MIT'
s.files = `git ls-files -z -- */* {LICENSE,README,Rakefile}*`.split "\x0"
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.6'
s.add_development_dependency 'bundler', '~> 2.2'
s.add_development_dependency 'nokogiri', '~> 1.13.6'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rubocop', '~> 1.28'
s.add_development_dependency 'test-unit', '~> 3.5'
s.add_runtime_dependency 'asciidoctor', '>= 2.0.17', '< 3.0.0'
s.metadata['rubygems_mfa_required'] = 'true'
end