html-pipeline 2.9.0 → 2.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/html-pipeline.gemspec +2 -2
- data/lib/html/pipeline/sanitization_filter.rb +1 -1
- data/lib/html/pipeline/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b25ea00b70efa289606a1bce6449a798a0bd6b9c511e3d3658dc5797d94a045d
|
|
4
|
+
data.tar.gz: 5580cfadfe939008d70b855051147706bc63357d897a7179c5595f36f45e8eb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8a6c8c9f7ecd4779ff4e1c1243336817d7a99ccc726ff17f186e435d66ece9619104548dcb7757853ee3b745f59c4db32859a2b751349bf76319f90967b910b
|
|
7
|
+
data.tar.gz: d3e7c0676784638071abca592d19743fbf58affb66905885f740e21362b7fa15da3873a78b06956d32f16f7dfae925051234a78a6d6d7b47cdaa23320b935899
|
data/html-pipeline.gemspec
CHANGED
|
@@ -5,8 +5,8 @@ Gem::Specification.new do |gem|
|
|
|
5
5
|
gem.name = 'html-pipeline'
|
|
6
6
|
gem.version = HTML::Pipeline::VERSION
|
|
7
7
|
gem.license = 'MIT'
|
|
8
|
-
gem.authors = ['Ryan Tomayko', 'Jerry Cheung']
|
|
9
|
-
gem.email = ['ryan@github.com', 'jerry@github.com']
|
|
8
|
+
gem.authors = ['Ryan Tomayko', 'Jerry Cheung', 'Garen J. Torikian']
|
|
9
|
+
gem.email = ['ryan@github.com', 'jerry@github.com', 'gjtorikian@gmail.com']
|
|
10
10
|
gem.description = 'GitHub HTML processing filters and utilities'
|
|
11
11
|
gem.summary = 'Helpers for processing content through a chain of filters'
|
|
12
12
|
gem.homepage = 'https://github.com/jch/html-pipeline'
|
|
@@ -33,7 +33,7 @@ module HTML
|
|
|
33
33
|
TABLE_SECTIONS = Set.new(%w[thead tbody tfoot].freeze)
|
|
34
34
|
|
|
35
35
|
# These schemes are the only ones allowed in <a href> attributes by default.
|
|
36
|
-
ANCHOR_SCHEMES = ['http', 'https', 'mailto', :relative, 'github-windows', 'github-mac'].freeze
|
|
36
|
+
ANCHOR_SCHEMES = ['http', 'https', 'mailto', :relative, 'github-windows', 'github-mac', 'irc', 'ircs'].freeze
|
|
37
37
|
|
|
38
38
|
# The main sanitization whitelist. Only these elements and attributes are
|
|
39
39
|
# allowed through by default.
|
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-pipeline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.9.
|
|
4
|
+
version: 2.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Tomayko
|
|
8
8
|
- Jerry Cheung
|
|
9
|
+
- Garen J. Torikian
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2018-11-
|
|
13
|
+
date: 2018-11-13 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: activesupport
|
|
@@ -43,6 +44,7 @@ description: GitHub HTML processing filters and utilities
|
|
|
43
44
|
email:
|
|
44
45
|
- ryan@github.com
|
|
45
46
|
- jerry@github.com
|
|
47
|
+
- gjtorikian@gmail.com
|
|
46
48
|
executables: []
|
|
47
49
|
extensions: []
|
|
48
50
|
extra_rdoc_files: []
|