File: html-pipeline.gemspec

package info (click to toggle)
ruby-html-pipeline 2.14.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: ruby: 2,265; sh: 13; makefile: 6
file content (29 lines) | stat: -rw-r--r-- 1,159 bytes parent folder | download | duplicates (3)
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
# frozen_string_literal: true

require File.expand_path('../lib/html/pipeline/version', __FILE__)

Gem::Specification.new do |gem|
  gem.name          = 'html-pipeline'
  gem.version       = HTML::Pipeline::VERSION
  gem.license       = 'MIT'
  gem.authors       = ['Ryan Tomayko', 'Jerry Cheung', 'Garen J. Torikian']
  gem.email         = ['ryan@github.com', 'jerry@github.com', 'gjtorikian@gmail.com']
  gem.description   = 'GitHub HTML processing filters and utilities'
  gem.summary       = 'Helpers for processing content through a chain of filters'
  gem.homepage      = 'https://github.com/jch/html-pipeline'

  gem.files         = `git ls-files -z`.split("\x0").reject { |f| f =~ %r{^(test|gemfiles|script)/} }
  gem.require_paths = ['lib']

  gem.add_dependency 'activesupport', '>= 2'
  gem.add_dependency 'nokogiri', '>= 1.4'

  gem.post_install_message = <<msg
-------------------------------------------------
Thank you for installing html-pipeline!
You must bundle Filter gem dependencies.
See html-pipeline README.md for more details.
https://github.com/jch/html-pipeline#dependencies
-------------------------------------------------
msg
end