-
-
Notifications
You must be signed in to change notification settings - Fork 383
/
html-pipeline.gemspec
39 lines (32 loc) · 1.39 KB
/
html-pipeline.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
32
33
34
35
36
37
38
39
# frozen_string_literal: true
$LOAD_PATH.push(File.expand_path("lib", __dir__))
require "html_pipeline/version"
Gem::Specification.new do |gem|
gem.name = "html-pipeline"
gem.version = HTMLPipeline::VERSION
gem.license = "MIT"
gem.authors = ["Garen J. Torikian"]
gem.email = ["[email protected]"]
gem.description = "HTML processing filters and utilities"
gem.summary = "Helpers for processing content through a chain of filters"
gem.homepage = "https://github.com/gjtorikian/html-pipeline"
gem.files = %x(git ls-files -z).split("\x0").reject { |f| f =~ %r{^(test|gemfiles|script)/} }
gem.require_paths = ["lib"]
gem.required_ruby_version = "~> 3.1"
# https://github.com/rubygems/rubygems/pull/5852#issuecomment-1231118509
gem.required_rubygems_version = ">= 3.3.22"
gem.metadata = {
"funding_uri" => "https://github.com/sponsors/gjtorikian/",
"rubygems_mfa_required" => "true",
}
gem.add_dependency("selma", "~> 0.4")
gem.add_dependency("zeitwerk", "~> 2.5")
gem.post_install_message = <<~MSG
-------------------------------------------------
Thank you for installing html-pipeline!
You must bundle filter gem dependencies.
See the html-pipeline README.md for more details:
https://github.com/gjtorikian/html-pipeline#dependencies
-------------------------------------------------
MSG
end