-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhtml-pipeline-issue_references.gemspec
31 lines (25 loc) · 1.32 KB
/
html-pipeline-issue_references.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 'html/pipeline/issue_references/version'
Gem::Specification.new do |spec|
spec.name = 'html-pipeline-issue_references'
spec.version = HTML::Pipeline::IssueReferences::VERSION
spec.authors = ['Codetree', 'Derrick Reimer']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'An HTML::Pipeline filter for auto-linking GitHub issue references'
spec.description = spec.summary
spec.homepage = 'https://github.com/codetree/html-pipeline-issue_references'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ['lib']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.add_dependency 'html-pipeline', '~> 2.12'
spec.add_development_dependency 'bundler', '~> 2.1', '>= 2.1.4'
spec.add_development_dependency 'guard', '~> 2.16'
spec.add_development_dependency 'guard-minitest', '~> 2.4'
spec.add_development_dependency 'guard-rubocop', '~> 1.3'
spec.add_development_dependency 'minitest', '~> 5.14'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rubocop', '~> 0.80.1'
end