commonmarker 1.0.0.pre9-x64-mingw-ucrt → 1.0.0.pre10-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 146ba86cacac11d899e4afceefbb5d72f0c6105cab01f15f74868fc70f4362ad
4
- data.tar.gz: 897833726b31bd6ca7abb6e1fffff9fa0762a9007afd3cc65389432c80173e2c
3
+ metadata.gz: 612cf915b2e21c116a3684f68177c30c31f59b08ab5047b7c8f80463888ec577
4
+ data.tar.gz: 918c95de5a93d27e2ff4a7b6a8e5d692170c738dfcd7fde4db281a342b3999ce
5
5
  SHA512:
6
- metadata.gz: 32b23c86b5729d4206d1b1254163cd35ada9f155e9384079d5560a29b4fc429804f0c0ed9a279f993357149c4a1c8438bbda2c4c4881b3c5d49207b6b4e8a114
7
- data.tar.gz: 220d994b499dc798d2793b105f5f28c6b5f9bee64a27ea642761eb333ae164fe3dec36d0fa30e2d675dc92a694979366c0c5aac64a6f2a03b0cfb5aaaeb0d849
6
+ metadata.gz: 5a4fc4fefc1a84debfc80a6eb14d25bba7529b6701657ec1e28fda938770110ba05c1a1afe980cef716a43b338be074691d61f18370152a97da1775bb95532d5
7
+ data.tar.gz: d93bfb4b5ad9243ba31336aa03c2851713fb5a7b9b4c7a0b355098852efd9b5922e937ea1e2ff8bfd4dd1e067c69d2edc2ef4d2b460b959bc6872802951121c9
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: x64-mingw-ucrt
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