commonmarker 1.0.0.pre9-x86_64-linux → 1.0.0.pre10-x86_64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c89cf099202a906fdf96df36e81338c90924c3a819203e63d211ecad6f3e9e7
4
- data.tar.gz: 746f1de02fb9a05c78e187d03772780b16803354d6b4ccf26ba32e9be824de27
3
+ metadata.gz: 1b457c7a80f3c62db4c0ccf99e2023712b67c55dac99fee313106fa4cfbcee71
4
+ data.tar.gz: d60a0235c8512b9d2e90693ea86509a33dc9ec3b4a76b03387decd088b255387
5
5
  SHA512:
6
- metadata.gz: 26d21b5e2b40ec1bb7498f676363da19285b987d74a04ae4b63fd1189c57cc613b84f3c3a9ce9fe6db09e8d5e99985483d37be58244ca696ca57331ac09388d1
7
- data.tar.gz: dc61b924679ee29ff2a31a620fe5ffaffb5764e40cfbc0646b4daaf75147868b61e8f091c7291736aa90148c17e754d9058411f5efae5ebde347f5620778e3b5
6
+ metadata.gz: 95b450c132fcfafdce07ffdbfbd8e985bb06de68a16da8a371694d70e1b8c9cf4450745509325e653d143670ec6f3216a38ae435b255dc6d7c62b3ac63ffaca4
7
+ data.tar.gz: 20af1ea85657f7d51b6c194c153cd2e53edc7e90b27f541993eb1bf7037a6b2f2de21af7281b92463a2d56fef61f6c35eeafaa2b32ba1d8f5b9730f06acae613
Binary file
Binary file
@@ -79,7 +79,7 @@ module Commonmarker
79
79
 
80
80
  [:syntax_highlighter].each do |type|
81
81
  define_singleton_method :"process_#{type}_plugin" do |plugin|
82
- return nil if plugin.nil? # plugin explicitly nil, remove it
82
+ return if plugin.nil? # plugin explicitly nil, remove it
83
83
 
84
84
  Commonmarker::Config::PLUGINS[type].each_with_object({}) do |(key, value), hash|
85
85
  if plugin.nil? # option not provided, go for the default
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "1.0.0.pre9"
4
+ VERSION = "1.0.0.pre10"
5
5
  end
data/lib/commonmarker.rb CHANGED
@@ -7,11 +7,6 @@ require "commonmarker/config"
7
7
  require "commonmarker/renderer"
8
8
  require "commonmarker/version"
9
9
 
10
- if ENV.fetch("DEBUG", false)
11
- require "awesome_print"
12
- require "debug"
13
- end
14
-
15
10
  module Commonmarker
16
11
  class << self
17
12
  # Public: Parses a CommonMark string into an HTML string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmarker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre9
4
+ version: 1.0.0.pre10
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Garen Torikian
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-28 00:00:00.000000000 Z
12
+ date: 2023-07-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake