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

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: ae61e22944f69e9d8fd73a075a2b225b2d3fab0cc72ab4c729401ffe71a6a5e6
4
- data.tar.gz: 14f11c71a669044ab029ba42ad4773060f29242a03ef79678f027ee3b020329c
3
+ metadata.gz: 1689ddaddf789bb0c2c11050bfd4db83132a3ca011766f5336a351b100b75d66
4
+ data.tar.gz: dac5251fa3c6944b300a6dd9baf5ea1b13ac2b8d5af7c8775412a5668840e93e
5
5
  SHA512:
6
- metadata.gz: dc518435384b58fce65163c18ec812eb66ecf4f3926bc19dc948379ce7ca748483e87d5932634cbd28284656c3b225239c1903bd1612c8770026d929d990d059
7
- data.tar.gz: 333dadf42bcafa20e91ddcf4238b303178730d4815fc124a393df158705eac879ed0beaf093eb51e48199de7ffbc57797ee8e27bd6df29b4fb0fcd64a04d45ed
6
+ metadata.gz: e43ff69a054933a36a637b7fbf3f336473ca23f6b44baad6223a5fcd18263cdac847e6daf9abe3989c3d42cb81df3f9a96c5d21da47db4f6d930ce125f1d9897
7
+ data.tar.gz: b986553552bba37ff8e4ee98762f10a6a6112f502edbfec4a736c4a08fc0472af992645319e37887326aa922caa984356f35848d3a10e465596c4b52f27a8f75
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: aarch64-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