forked from gjtorikian/html-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 3
/
html-pipeline-linuxfr.gemspec
27 lines (23 loc) · 1.15 KB
/
html-pipeline-linuxfr.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/html/pipeline/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "html-pipeline-linuxfr"
gem.version = HTML::Pipeline::VERSION
gem.license = "MIT"
gem.authors = ["Ryan Tomayko", "Jerry Cheung", "Bruno Michel"]
gem.description = %q{LinuxFr.org HTML processing filters and utilities, adapted from those of GitHub}
gem.summary = %q{Helpers for processing content through a chain of filters}
gem.homepage = "https://github.com/nono/html-pipeline-linuxfr"
gem.files = `git ls-files`.split $/
gem.test_files = gem.files.grep(%r{^test})
gem.require_paths = ["lib"]
gem.add_dependency "nokogiri", "~> 1.6"
gem.add_dependency "redcarpet", "~> 3.4"
gem.add_dependency "pygments.rb", "~> 1.1"
gem.add_dependency "sanitize", "~> 5.0"
gem.add_dependency "escape_utils", "~> 1.2"
gem.add_dependency "activesupport", "~> 7.0"
gem.add_dependency "patron", "~> 0.8"
gem.add_development_dependency "test-unit"
end