commonmarker 1.0.0.pre8-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: e4ccc7a1c9f36931a5658ff4651e392462219f85ec7d63265b73f2a6007a48db
4
- data.tar.gz: 36af23c368be45ad7dfb8a06cead21ce38d09f8bf8daf00d34e8dccbfd0ccf89
3
+ metadata.gz: 612cf915b2e21c116a3684f68177c30c31f59b08ab5047b7c8f80463888ec577
4
+ data.tar.gz: 918c95de5a93d27e2ff4a7b6a8e5d692170c738dfcd7fde4db281a342b3999ce
5
5
  SHA512:
6
- metadata.gz: 86a7219c84da7e71fbe7512c119d777e3be2f8bdd39a16d8b25c9a3643ede5f2ee517e8c1560f60f58d2e34041a0f3eee89a6a7ba2d3ec8b8683590ea9eed43f
7
- data.tar.gz: b49de4797275d9bc0d49628c2fd5a683608fbf1453c02fcb5b40c4963636bb2171c55d2d034cd9589490fe8babb1778c466a96167ebfc83815586ecd0d1be9e2
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.pre8"
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.pre8
4
+ version: 1.0.0.pre10
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Garen Torikian
@@ -9,23 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-09 00:00:00.000000000 Z
12
+ date: 2023-07-24 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: rb_sys
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: '0.9'
21
- type: :runtime
22
- prerelease: false
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - "~>"
26
- - !ruby/object:Gem::Version
27
- version: '0.9'
28
- force_ruby_platform: false
29
14
  - !ruby/object:Gem::Dependency
30
15
  name: rake
31
16
  requirement: !ruby/object:Gem::Requirement
@@ -54,20 +39,6 @@ dependencies:
54
39
  - - "~>"
55
40
  - !ruby/object:Gem::Version
56
41
  version: '1.2'
57
- - !ruby/object:Gem::Dependency
58
- name: rake-compiler-dock
59
- requirement: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - "~>"
62
- - !ruby/object:Gem::Version
63
- version: '1.2'
64
- type: :development
65
- prerelease: false
66
- version_requirements: !ruby/object:Gem::Requirement
67
- requirements:
68
- - - "~>"
69
- - !ruby/object:Gem::Version
70
- version: '1.2'
71
42
  description: A fast, safe, extensible parser for CommonMark. This wraps the comrak
72
43
  Rust crate.
73
44
  email:
@@ -75,17 +46,8 @@ executables: []
75
46
  extensions: []
76
47
  extra_rdoc_files: []
77
48
  files:
78
- - Cargo.lock
79
49
  - LICENSE.txt
80
50
  - README.md
81
- - ext/commonmarker/Cargo.toml
82
- - ext/commonmarker/_util.rb
83
- - ext/commonmarker/extconf.rb
84
- - ext/commonmarker/src/lib.rs
85
- - ext/commonmarker/src/options.rs
86
- - ext/commonmarker/src/plugins.rs
87
- - ext/commonmarker/src/plugins/syntax_highlighting.rs
88
- - ext/commonmarker/src/utils.rs
89
51
  - lib/commonmarker.rb
90
52
  - lib/commonmarker/3.1/commonmarker.so
91
53
  - lib/commonmarker/3.2/commonmarker.so