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.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/html-pipeline-plus.gemspec +1 -1
  3. data/lib/html/{pipeline-plus → pipeline_plus}/@mention_filter.rb +0 -0
  4. data/lib/html/{pipeline-plus → pipeline_plus}/absolute_source_filter.rb +0 -0
  5. data/lib/html/{pipeline-plus → pipeline_plus}/autolink_filter.rb +0 -0
  6. data/lib/html/{pipeline-plus → pipeline_plus}/body_content.rb +0 -0
  7. data/lib/html/{pipeline-plus → pipeline_plus}/camo_filter.rb +0 -0
  8. data/lib/html/{pipeline-plus → pipeline_plus}/email_reply_filter.rb +0 -0
  9. data/lib/html/{pipeline-plus → pipeline_plus}/emoji_filter.rb +0 -0
  10. data/lib/html/{pipeline-plus → pipeline_plus}/filter.rb +0 -0
  11. data/lib/html/{pipeline-plus → pipeline_plus}/https_filter.rb +0 -0
  12. data/lib/html/{pipeline-plus → pipeline_plus}/image_filter.rb +0 -0
  13. data/lib/html/{pipeline-plus → pipeline_plus}/image_max_width_filter.rb +0 -0
  14. data/lib/html/{pipeline-plus → pipeline_plus}/markdown_filter.rb +0 -0
  15. data/lib/html/{pipeline-plus → pipeline_plus}/plain_text_input_filter.rb +0 -0
  16. data/lib/html/{pipeline-plus → pipeline_plus}/sanitization_filter.rb +0 -0
  17. data/lib/html/{pipeline-plus → pipeline_plus}/syntax_highlight_filter.rb +0 -0
  18. data/lib/html/{pipeline-plus → pipeline_plus}/text_filter.rb +0 -0
  19. data/lib/html/{pipeline-plus → pipeline_plus}/textile_filter.rb +0 -0
  20. data/lib/html/{pipeline-plus → pipeline_plus}/toc_filter.rb +0 -0
  21. data/lib/html/{pipeline-plus → pipeline_plus}/version.rb +1 -1
  22. data/lib/html/{pipeline-plus.rb → pipeline_plus.rb} +19 -19
  23. metadata +21 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39e07638ed938c9ff02130f273d9a98bc4e7de45a8c49fa14c978fa2de0dee98
4
- data.tar.gz: 22ff0081f22eae6f7557e99f22065df52c81ea59d365343322cb71f6753443da
3
+ metadata.gz: 0525f74fca46100cf9826376ab180fdadc86e90f396c22c06f356fbccb663695
4
+ data.tar.gz: 5e4c5f82fdc2db0ecae104a9fefc0db1f5a94a39eaae728c27ac409a144735b5
5
5
  SHA512:
6
- metadata.gz: f7a2cc93e29c29566c6987576aab8014b24d567d604721f8a3860ea184319078faf680f379b668378c3dd4f2ad79b73ae764361032ed7c5028b6769bcbdd4a09
7
- data.tar.gz: ec045ace0a1d5d0e2d4470e6bcd57971aea0ba35f230563229f6b29b49d831d13fec8607018c5f35c5b534701feefa5a792586d010b425701230cfcfdf60fcce
6
+ metadata.gz: d08e26cf81e6c5cbdb7d5fbe4d4452624ba634c1685bc267dcac90e57d6c3f4d755a6473d1a7b96649e891bd4267f2968aaa52e8227915b661d3dfb25be0cc46
7
+ data.tar.gz: 6d9663c4e716d542fae81d9c08beff07ca5d3685d06dd19c85d6c49a59e97d5e7224e0b2f4d57452283b089eaf341e707515280e84cba91af4efd38c6fb41513
@@ -1,5 +1,5 @@
1
1
 
2
- require File.expand_path('../lib/html/pipeline-plus/version', __FILE__)
2
+ require File.expand_path('../lib/html/pipeline_plus/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = 'html-pipeline-plus'
File without changes
@@ -1,5 +1,5 @@
1
1
  module HTML
2
2
  class Pipeline
3
- VERSION = '2.10.1'.freeze
3
+ VERSION = '2.10.2'.freeze
4
4
  end
5
5
  end
@@ -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/pipeline/version'
27
- autoload :Filter, 'html/pipeline/filter'
28
- autoload :AbsoluteSourceFilter, 'html/pipeline/absolute_source_filter'
29
- autoload :BodyContent, 'html/pipeline/body_content'
30
- autoload :AutolinkFilter, 'html/pipeline/autolink_filter'
31
- autoload :CamoFilter, 'html/pipeline/camo_filter'
32
- autoload :EmailReplyFilter, 'html/pipeline/email_reply_filter'
33
- autoload :EmojiFilter, 'html/pipeline/emoji_filter'
34
- autoload :HttpsFilter, 'html/pipeline/https_filter'
35
- autoload :ImageFilter, 'html/pipeline/image_filter'
36
- autoload :ImageMaxWidthFilter, 'html/pipeline/image_max_width_filter'
37
- autoload :MarkdownFilter, 'html/pipeline/markdown_filter'
38
- autoload :MentionFilter, 'html/pipeline/@mention_filter'
39
- autoload :PlainTextInputFilter, 'html/pipeline/plain_text_input_filter'
40
- autoload :SanitizationFilter, 'html/pipeline/sanitization_filter'
41
- autoload :SyntaxHighlightFilter, 'html/pipeline/syntax_highlight_filter'
42
- autoload :TextileFilter, 'html/pipeline/textile_filter'
43
- autoload :TableOfContentsFilter, 'html/pipeline/toc_filter'
44
- autoload :TextFilter, 'html/pipeline/text_filter'
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.1
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/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
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: