html-pipeline-plus 2.10.1 → 2.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/html-pipeline-plus.gemspec +1 -1
- data/lib/html/{pipeline-plus → pipeline_plus}/@mention_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/absolute_source_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/autolink_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/body_content.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/camo_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/email_reply_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/emoji_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/https_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/image_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/image_max_width_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/markdown_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/plain_text_input_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/sanitization_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/syntax_highlight_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/text_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/textile_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/toc_filter.rb +0 -0
- data/lib/html/{pipeline-plus → pipeline_plus}/version.rb +1 -1
- data/lib/html/{pipeline-plus.rb → pipeline_plus.rb} +19 -19
- metadata +21 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0525f74fca46100cf9826376ab180fdadc86e90f396c22c06f356fbccb663695
|
4
|
+
data.tar.gz: 5e4c5f82fdc2db0ecae104a9fefc0db1f5a94a39eaae728c27ac409a144735b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d08e26cf81e6c5cbdb7d5fbe4d4452624ba634c1685bc267dcac90e57d6c3f4d755a6473d1a7b96649e891bd4267f2968aaa52e8227915b661d3dfb25be0cc46
|
7
|
+
data.tar.gz: 6d9663c4e716d542fae81d9c08beff07ca5d3685d06dd19c85d6c49a59e97d5e7224e0b2f4d57452283b089eaf341e707515280e84cba91af4efd38c6fb41513
|
data/html-pipeline-plus.gemspec
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -23,25 +23,25 @@ module HTML
|
|
23
23
|
# calls. Default: Hash. Protip: Pass in a Struct to get
|
24
24
|
# some semblance of type safety.
|
25
25
|
class Pipeline
|
26
|
-
autoload :VERSION, 'html/
|
27
|
-
autoload :Filter, 'html/
|
28
|
-
autoload :AbsoluteSourceFilter, 'html/
|
29
|
-
autoload :BodyContent, 'html/
|
30
|
-
autoload :AutolinkFilter, 'html/
|
31
|
-
autoload :CamoFilter, 'html/
|
32
|
-
autoload :EmailReplyFilter, 'html/
|
33
|
-
autoload :EmojiFilter, 'html/
|
34
|
-
autoload :HttpsFilter, 'html/
|
35
|
-
autoload :ImageFilter, 'html/
|
36
|
-
autoload :ImageMaxWidthFilter, 'html/
|
37
|
-
autoload :MarkdownFilter, 'html/
|
38
|
-
autoload :MentionFilter, 'html/
|
39
|
-
autoload :PlainTextInputFilter, 'html/
|
40
|
-
autoload :SanitizationFilter, 'html/
|
41
|
-
autoload :SyntaxHighlightFilter, 'html/
|
42
|
-
autoload :TextileFilter, 'html/
|
43
|
-
autoload :TableOfContentsFilter, 'html/
|
44
|
-
autoload :TextFilter, 'html/
|
26
|
+
autoload :VERSION, 'html/pipeline_plus/version'
|
27
|
+
autoload :Filter, 'html/pipeline_plus/filter'
|
28
|
+
autoload :AbsoluteSourceFilter, 'html/pipeline_plus/absolute_source_filter'
|
29
|
+
autoload :BodyContent, 'html/pipeline_plus/body_content'
|
30
|
+
autoload :AutolinkFilter, 'html/pipeline_plus/autolink_filter'
|
31
|
+
autoload :CamoFilter, 'html/pipeline_plus/camo_filter'
|
32
|
+
autoload :EmailReplyFilter, 'html/pipeline_plus/email_reply_filter'
|
33
|
+
autoload :EmojiFilter, 'html/pipeline_plus/emoji_filter'
|
34
|
+
autoload :HttpsFilter, 'html/pipeline_plus/https_filter'
|
35
|
+
autoload :ImageFilter, 'html/pipeline_plus/image_filter'
|
36
|
+
autoload :ImageMaxWidthFilter, 'html/pipeline_plus/image_max_width_filter'
|
37
|
+
autoload :MarkdownFilter, 'html/pipeline_plus/markdown_filter'
|
38
|
+
autoload :MentionFilter, 'html/pipeline_plus/@mention_filter'
|
39
|
+
autoload :PlainTextInputFilter, 'html/pipeline_plus/plain_text_input_filter'
|
40
|
+
autoload :SanitizationFilter, 'html/pipeline_plus/sanitization_filter'
|
41
|
+
autoload :SyntaxHighlightFilter, 'html/pipeline_plus/syntax_highlight_filter'
|
42
|
+
autoload :TextileFilter, 'html/pipeline_plus/textile_filter'
|
43
|
+
autoload :TableOfContentsFilter, 'html/pipeline_plus/toc_filter'
|
44
|
+
autoload :TextFilter, 'html/pipeline_plus/text_filter'
|
45
45
|
|
46
46
|
class MissingDependencyError < RuntimeError; end
|
47
47
|
def self.require_dependency(name, requirer)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html-pipeline-plus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.10.
|
4
|
+
version: 2.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Tomayko
|
@@ -62,26 +62,26 @@ files:
|
|
62
62
|
- Rakefile
|
63
63
|
- bin/html-pipeline-plus
|
64
64
|
- html-pipeline-plus.gemspec
|
65
|
-
- lib/html/
|
66
|
-
- lib/html/
|
67
|
-
- lib/html/
|
68
|
-
- lib/html/
|
69
|
-
- lib/html/
|
70
|
-
- lib/html/
|
71
|
-
- lib/html/
|
72
|
-
- lib/html/
|
73
|
-
- lib/html/
|
74
|
-
- lib/html/
|
75
|
-
- lib/html/
|
76
|
-
- lib/html/
|
77
|
-
- lib/html/
|
78
|
-
- lib/html/
|
79
|
-
- lib/html/
|
80
|
-
- lib/html/
|
81
|
-
- lib/html/
|
82
|
-
- lib/html/
|
83
|
-
- lib/html/
|
84
|
-
- lib/html/
|
65
|
+
- lib/html/pipeline_plus.rb
|
66
|
+
- lib/html/pipeline_plus/@mention_filter.rb
|
67
|
+
- lib/html/pipeline_plus/absolute_source_filter.rb
|
68
|
+
- lib/html/pipeline_plus/autolink_filter.rb
|
69
|
+
- lib/html/pipeline_plus/body_content.rb
|
70
|
+
- lib/html/pipeline_plus/camo_filter.rb
|
71
|
+
- lib/html/pipeline_plus/email_reply_filter.rb
|
72
|
+
- lib/html/pipeline_plus/emoji_filter.rb
|
73
|
+
- lib/html/pipeline_plus/filter.rb
|
74
|
+
- lib/html/pipeline_plus/https_filter.rb
|
75
|
+
- lib/html/pipeline_plus/image_filter.rb
|
76
|
+
- lib/html/pipeline_plus/image_max_width_filter.rb
|
77
|
+
- lib/html/pipeline_plus/markdown_filter.rb
|
78
|
+
- lib/html/pipeline_plus/plain_text_input_filter.rb
|
79
|
+
- lib/html/pipeline_plus/sanitization_filter.rb
|
80
|
+
- lib/html/pipeline_plus/syntax_highlight_filter.rb
|
81
|
+
- lib/html/pipeline_plus/text_filter.rb
|
82
|
+
- lib/html/pipeline_plus/textile_filter.rb
|
83
|
+
- lib/html/pipeline_plus/toc_filter.rb
|
84
|
+
- lib/html/pipeline_plus/version.rb
|
85
85
|
- test.txt
|
86
86
|
homepage: https://github.com/shines77/html-pipeline-plus/
|
87
87
|
licenses:
|