forked from hsanson/asciidoctor-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasciidoctor-plantuml.gemspec
30 lines (26 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
# 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.3'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'nokogiri', '~> 1.6'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rubocop', '~> 0.66'
s.add_development_dependency 'test-unit', '~> 3.3'
s.add_runtime_dependency 'asciidoctor', '>= 1.5.6', '< 3.0.0'
end