rouge 4.2.0 → 4.2.1
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 +4 -4
- data/Gemfile +7 -7
- data/lib/rouge/cli.rb +2 -4
- data/lib/rouge/lexers/ada.rb +1 -1
- data/lib/rouge/lexers/clean.rb +4 -4
- data/lib/rouge/lexers/cpp.rb +1 -1
- data/lib/rouge/lexers/ecl.rb +2 -2
- data/lib/rouge/lexers/elixir.rb +1 -1
- data/lib/rouge/lexers/gdscript.rb +4 -4
- data/lib/rouge/lexers/ghc_cmm.rb +3 -3
- data/lib/rouge/lexers/julia.rb +3 -2
- data/lib/rouge/lexers/kotlin.rb +1 -1
- data/lib/rouge/lexers/make.rb +1 -1
- data/lib/rouge/lexers/meson.rb +0 -1
- data/lib/rouge/lexers/nasm.rb +5 -4
- data/lib/rouge/lexers/nginx.rb +1 -0
- data/lib/rouge/lexers/objective_c/common.rb +0 -2
- data/lib/rouge/lexers/ocl.rb +2 -2
- data/lib/rouge/lexers/openedge.rb +0 -2
- data/lib/rouge/lexers/plsql.rb +5 -5
- data/lib/rouge/lexers/ruby.rb +1 -1
- data/lib/rouge/lexers/scala.rb +5 -2
- data/lib/rouge/lexers/sql.rb +1 -1
- data/lib/rouge/lexers/syzlang.rb +0 -1
- data/lib/rouge/lexers/toml.rb +12 -12
- data/lib/rouge/lexers/ttcn3.rb +0 -2
- data/lib/rouge/lexers/xojo.rb +1 -1
- data/lib/rouge/lexers/yang.rb +1 -1
- data/lib/rouge/tex_theme_renderer.rb +1 -1
- data/lib/rouge/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37949922e331ce08a0d8270560930eca1a9b5b0f2c7a4beb8a0c70c47e39e9ac
|
4
|
+
data.tar.gz: 2a9bcecc9809c7211f74be3d294cf21408f76539b804733299b4a54f808a5d0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2f8da79bd3fcf3c5449a2cc4ccd3a2fdaca4c0bbc33748f3d4552061771f458d9b2fc890d72445576240a446672aa09fea559ed5eb7c65f68f700bf8c1999ed
|
7
|
+
data.tar.gz: f0908d8e6ad216c960496da16778ce6c2e5ff4762a4cf8e1de71b4a68c2d113293462a0186bcbee83280da6c1ef5c6fa8ef9456899e14aad8f9a2bafd903e7f0
|
data/Gemfile
CHANGED
@@ -10,22 +10,22 @@ gem 'minitest', '>= 5.0'
|
|
10
10
|
gem 'minitest-power_assert'
|
11
11
|
gem 'power_assert', '~> 2.0'
|
12
12
|
|
13
|
-
gem 'rubocop', '~> 1.0', '<= 1.11'
|
14
|
-
gem 'rubocop-performance'
|
15
|
-
|
16
13
|
# don't try to install redcarpet under jruby
|
17
14
|
gem 'redcarpet', platforms: :ruby
|
18
15
|
|
19
16
|
# Profiling
|
20
17
|
gem 'memory_profiler', require: false
|
21
18
|
|
22
|
-
# Needed for a Rake task
|
23
|
-
gem 'git'
|
24
|
-
gem 'yard'
|
25
|
-
|
26
19
|
group :development do
|
27
20
|
gem 'pry'
|
28
21
|
|
22
|
+
# Needed for a Rake task
|
23
|
+
gem 'git'
|
24
|
+
gem 'yard'
|
25
|
+
|
26
|
+
gem 'rubocop', '~> 1.0', '<= 1.11'
|
27
|
+
gem 'rubocop-performance'
|
28
|
+
|
29
29
|
# docs
|
30
30
|
gem 'github-markup'
|
31
31
|
|
data/lib/rouge/cli.rb
CHANGED
@@ -347,8 +347,7 @@ module Rouge
|
|
347
347
|
formatter.format(lexer.lex(input), &method(:print))
|
348
348
|
end
|
349
349
|
|
350
|
-
private_class_method
|
351
|
-
def self.parse_cgi(str)
|
350
|
+
private_class_method def self.parse_cgi(str)
|
352
351
|
pairs = CGI.parse(str).map { |k, v| [k.to_sym, v.first] }
|
353
352
|
Hash[pairs]
|
354
353
|
end
|
@@ -511,8 +510,7 @@ module Rouge
|
|
511
510
|
end
|
512
511
|
|
513
512
|
|
514
|
-
private_class_method
|
515
|
-
def self.normalize_syntax(argv)
|
513
|
+
private_class_method def self.normalize_syntax(argv)
|
516
514
|
out = []
|
517
515
|
argv.each do |arg|
|
518
516
|
case arg
|
data/lib/rouge/lexers/ada.rb
CHANGED
data/lib/rouge/lexers/clean.rb
CHANGED
@@ -79,7 +79,7 @@ module Rouge
|
|
79
79
|
|
80
80
|
rule %r/code(\s+inline)?\s*{/, Comment::Preproc, :abc
|
81
81
|
|
82
|
-
rule %r/_*[a-z][\
|
82
|
+
rule %r/_*[a-z][\w`]*/ do |m|
|
83
83
|
if self.class.keywords.include?(m[0])
|
84
84
|
token Keyword
|
85
85
|
else
|
@@ -87,7 +87,7 @@ module Rouge
|
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
|
-
rule %r/_*[A-Z][\
|
90
|
+
rule %r/_*[A-Z][\w`]*/ do |m|
|
91
91
|
if m[0]=='True' || m[0]=='False'
|
92
92
|
token Keyword::Constant
|
93
93
|
else
|
@@ -95,7 +95,7 @@ module Rouge
|
|
95
95
|
end
|
96
96
|
end
|
97
97
|
|
98
|
-
rule %r/[^\
|
98
|
+
rule %r/[^\w\s`]/, Punctuation
|
99
99
|
rule %r/_\b/, Punctuation
|
100
100
|
end
|
101
101
|
|
@@ -136,7 +136,7 @@ module Rouge
|
|
136
136
|
|
137
137
|
rule %r/}/, Comment::Preproc, :pop!
|
138
138
|
rule %r/\.\w*/, Keyword, :abc_rest_of_line
|
139
|
-
rule %r/[\
|
139
|
+
rule %r/[\w]+/, Name::Builtin, :abc_rest_of_line
|
140
140
|
end
|
141
141
|
|
142
142
|
state :abc_rest_of_line do
|
data/lib/rouge/lexers/cpp.rb
CHANGED
@@ -27,7 +27,7 @@ module Rouge
|
|
27
27
|
delete dynamic_cast explicit export friend
|
28
28
|
mutable namespace new operator private protected public
|
29
29
|
reinterpret_cast requires restrict size_of static_cast this throw throws
|
30
|
-
typeid typename using virtual final override
|
30
|
+
typeid typename using virtual final override import module
|
31
31
|
|
32
32
|
alignas alignof decltype noexcept static_assert
|
33
33
|
thread_local try
|
data/lib/rouge/lexers/ecl.rb
CHANGED
@@ -114,8 +114,8 @@ module Rouge
|
|
114
114
|
mixin :single_quote
|
115
115
|
|
116
116
|
rule %r(\b(?i:(and|not|or|in))\b), Operator::Word
|
117
|
-
rule %r(
|
118
|
-
rule %r([\[\]{}()
|
117
|
+
rule %r(:=|>|<|<>|/|\\|\+|-|=), Operator
|
118
|
+
rule %r([\[\]{}();,\&\.\%]), Punctuation
|
119
119
|
|
120
120
|
rule %r(\b(?i:(beginc\+\+.*?endc\+\+)))m, Str::Single
|
121
121
|
rule %r(\b(?i:(embed.*?endembed)))m, Str::Single
|
data/lib/rouge/lexers/elixir.rb
CHANGED
@@ -12,7 +12,7 @@ module Rouge
|
|
12
12
|
mimetypes 'text/x-gdscript', 'application/x-gdscript'
|
13
13
|
|
14
14
|
def self.keywords
|
15
|
-
@keywords
|
15
|
+
@keywords ||= %w(
|
16
16
|
and in not or as breakpoint class class_name extends is func setget
|
17
17
|
signal tool const enum export onready static var break continue
|
18
18
|
if elif else for pass return match while remote master puppet
|
@@ -22,13 +22,13 @@ module Rouge
|
|
22
22
|
|
23
23
|
# Reserved for future implementation
|
24
24
|
def self.keywords_reserved
|
25
|
-
@keywords_reserved
|
25
|
+
@keywords_reserved ||= %w(
|
26
26
|
do switch case
|
27
27
|
).join('|')
|
28
28
|
end
|
29
29
|
|
30
30
|
def self.builtins
|
31
|
-
builtins
|
31
|
+
@builtins ||= %w(
|
32
32
|
Color8 ColorN abs acos asin assert atan atan2 bytes2var ceil char
|
33
33
|
clamp convert cos cosh db2linear decimals dectime deg2rad dict2inst
|
34
34
|
ease exp floor fmod fposmod funcref hash inst2dict instance_from_id
|
@@ -41,7 +41,7 @@ module Rouge
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def self.builtins_type
|
44
|
-
@builtins_type
|
44
|
+
@builtins_type ||= %w(
|
45
45
|
bool int float String Vector2 Rect2 Transform2D Vector3 AABB
|
46
46
|
Plane Quat Basis Transform Color RID Object NodePath Dictionary
|
47
47
|
Array PoolByteArray PoolIntArray PoolRealArray PoolStringArray
|
data/lib/rouge/lexers/ghc_cmm.rb
CHANGED
@@ -22,11 +22,11 @@ module Rouge
|
|
22
22
|
ws = %r(\s|//.*?\n|/[*](?:[^*]|(?:[*][^/]))*[*]+/)mx
|
23
23
|
|
24
24
|
# Make sure that this is not a preprocessor macro, e.g. `#if` or `#define`.
|
25
|
-
id = %r((?!\#[a-zA-Z])[\w#\$%
|
25
|
+
id = %r((?!\#[a-zA-Z])[\w#\$%']+)
|
26
26
|
|
27
27
|
complex_id = %r(
|
28
|
-
(?:[\w#$%
|
29
|
-
(?:[\w#$%
|
28
|
+
(?:[\w#$%']|\(\)|\(,\)|\[\]|[0-9])*
|
29
|
+
(?:[\w#$%']+)
|
30
30
|
)mx
|
31
31
|
|
32
32
|
state :root do
|
data/lib/rouge/lexers/julia.rb
CHANGED
@@ -252,15 +252,16 @@ module Rouge
|
|
252
252
|
rule %r/\d+/, Literal::Number::Integer
|
253
253
|
end
|
254
254
|
|
255
|
+
NAME_RE = %r/[\p{L}\p{Nl}\p{S}_][\p{Word}\p{S}\p{Po}!]*/
|
255
256
|
|
256
257
|
state :funcname do
|
257
|
-
rule
|
258
|
+
rule NAME_RE, Name::Function, :pop!
|
258
259
|
rule %r/\([^\s\w{]{1,2}\)/, Operator, :pop!
|
259
260
|
rule %r/[^\s\w{]{1,2}/, Operator, :pop!
|
260
261
|
end
|
261
262
|
|
262
263
|
state :typename do
|
263
|
-
rule
|
264
|
+
rule NAME_RE, Name::Class, :pop!
|
264
265
|
end
|
265
266
|
|
266
267
|
state :stringescape do
|
data/lib/rouge/lexers/kotlin.rb
CHANGED
@@ -24,7 +24,7 @@ module Rouge
|
|
24
24
|
while yield
|
25
25
|
)
|
26
26
|
|
27
|
-
name_chars = %r'[
|
27
|
+
name_chars = %r'[-\p{Lu}\p{Ll}\p{Lt}\p{Lm}\p{Nl}\p{Nd}\p{Pc}\p{Cf}\p{Mn}\p{Mc}]*'
|
28
28
|
|
29
29
|
class_name = %r'`?[\p{Lu}]#{name_chars}`?'
|
30
30
|
name = %r'`?[_\p{Lu}\p{Ll}\p{Lt}\p{Lm}\p{Nl}]#{name_chars}`?'
|
data/lib/rouge/lexers/make.rb
CHANGED
data/lib/rouge/lexers/meson.rb
CHANGED
data/lib/rouge/lexers/nasm.rb
CHANGED
@@ -14,11 +14,12 @@ module Rouge
|
|
14
14
|
mimetypes 'text/x-nasm'
|
15
15
|
|
16
16
|
state :root do
|
17
|
-
|
17
|
+
rule %r/^\s*%/, Comment::Preproc, :preproc
|
18
18
|
|
19
|
-
|
19
|
+
mixin :whitespace
|
20
|
+
mixin :punctuation
|
20
21
|
|
21
|
-
|
22
|
+
rule %r/[a-z$._?][\w$.?#@~]*:/i, Name::Label
|
22
23
|
|
23
24
|
rule %r/([a-z$._?][\w$.?#@~]*)(\s+)(equ)/i do
|
24
25
|
groups Name::Constant, Keyword::Declaration, Keyword::Declaration
|
@@ -32,7 +33,7 @@ module Rouge
|
|
32
33
|
end
|
33
34
|
|
34
35
|
state :instruction_args do
|
35
|
-
|
36
|
+
rule %r/"(\\\\"|[^"\\n])*"|'(\\\\'|[^'\\n])*'|`(\\\\`|[^`\\n])*`/, Str
|
36
37
|
rule %r/(?:0x[\da-f]+|$0[\da-f]*|\d+[\da-f]*h)/i, Num::Hex
|
37
38
|
rule %r/[0-7]+q/i, Num::Oct
|
38
39
|
rule %r/[01]+b/i, Num::Bin
|
data/lib/rouge/lexers/nginx.rb
CHANGED
data/lib/rouge/lexers/ocl.rb
CHANGED
@@ -61,9 +61,9 @@ module Rouge
|
|
61
61
|
rule %r/--.*/, Comment::Single
|
62
62
|
rule %r/\d+/, Num::Integer
|
63
63
|
rule %r/'/, Str::Single, :single_string
|
64
|
-
rule %r([
|
64
|
+
rule %r([-|+*/<>=~!@#%&?^]), Operator
|
65
65
|
rule %r/[;:()\[\],.]/, Punctuation
|
66
|
-
rule %r
|
66
|
+
rule %r/[a-zA-Z]\w*/ do |m|
|
67
67
|
if self.class.operators.include? m[0]
|
68
68
|
token Operator
|
69
69
|
elsif self.class.keywords_type.include? m[0]
|
data/lib/rouge/lexers/plsql.rb
CHANGED
@@ -472,7 +472,7 @@ module Rouge
|
|
472
472
|
# A double-quoted string refers to a database object in our default SQL
|
473
473
|
rule %r/"/, Operator, :double_string
|
474
474
|
# preprocessor directive treated as special comment
|
475
|
-
rule %r/(\$(?:IF|THEN|ELSE|ELSIF|ERROR|END|(
|
475
|
+
rule %r/(\$(?:IF|THEN|ELSE|ELSIF|ERROR|END|(?:\$\$?[a-z]\w*)))(\s+)/im do
|
476
476
|
groups Comment::Preproc, Text
|
477
477
|
end
|
478
478
|
|
@@ -503,7 +503,7 @@ module Rouge
|
|
503
503
|
# Special processing for keywords with multiple contexts
|
504
504
|
#
|
505
505
|
# this madness is to keep the word "replace" from being treated as a builtin function in this context
|
506
|
-
rule %r/(create)(\s+)(?:(or)(\s+)(replace)(\s+))?(package|function|procedure|type)(?:(\s+)(body))?(\s+)(
|
506
|
+
rule %r/(create)(\s+)(?:(or)(\s+)(replace)(\s+))?(package|function|procedure|type)(?:(\s+)(body))?(\s+)([a-z][\w$]*)/im do
|
507
507
|
groups Keyword::Reserved, Text, Keyword::Reserved, Text, Keyword::Reserved, Text, Keyword::Reserved, Text, Keyword::Reserved, Text, Name
|
508
508
|
end
|
509
509
|
# similar for MERGE keywords
|
@@ -515,7 +515,7 @@ module Rouge
|
|
515
515
|
# General keyword classification with sepcial attention to names
|
516
516
|
# in a chained "dot" notation.
|
517
517
|
#
|
518
|
-
rule %r/(
|
518
|
+
rule %r/([a-zA-Z][\w$]*)(\.(?=\w))?/ do |m|
|
519
519
|
if self.class.keywords_type.include? m[1].upcase
|
520
520
|
tok = Keyword::Type
|
521
521
|
elsif self.class.keywords_func.include? m[1].upcase
|
@@ -556,11 +556,11 @@ module Rouge
|
|
556
556
|
|
557
557
|
state :dotnames do
|
558
558
|
# if we are followed by a dot and another name, we are an ordinary name
|
559
|
-
rule %r/(
|
559
|
+
rule %r/([a-zA-Z][\w\$]*)(\.(?=\w))/ do
|
560
560
|
groups Name, Punctuation
|
561
561
|
end
|
562
562
|
# this rule WILL be true if something pushed into our state. That is our state contract
|
563
|
-
rule %r
|
563
|
+
rule %r/[a-zA-Z][\w\$]*/ do |m|
|
564
564
|
if self.class.keywords_func.include? m[0].upcase
|
565
565
|
# The Function lookup allows collection methods like COUNT, FIRST, LAST, etc.. to be
|
566
566
|
# classified correctly. Occasionally misidentifies ordinary names as builtin functions,
|
data/lib/rouge/lexers/ruby.rb
CHANGED
@@ -57,7 +57,7 @@ module Rouge
|
|
57
57
|
token toktype
|
58
58
|
|
59
59
|
push do
|
60
|
-
uniq_chars =
|
60
|
+
uniq_chars = [open, close].uniq.join
|
61
61
|
uniq_chars = '' if open == close && open == "\\#"
|
62
62
|
rule %r/\\[##{uniq_chars}\\]/, Str::Escape
|
63
63
|
# nesting rules only with asymmetric delimiters
|
data/lib/rouge/lexers/scala.rb
CHANGED
@@ -13,7 +13,8 @@ module Rouge
|
|
13
13
|
mimetypes 'text/x-scala', 'application/x-scala'
|
14
14
|
|
15
15
|
# As documented in the ENBF section of the scala specification
|
16
|
-
#
|
16
|
+
# https://scala-lang.org/files/archive/spec/2.13/13-syntax-summary.html
|
17
|
+
# https://en.wikipedia.org/wiki/Unicode_character_property#General_Category
|
17
18
|
whitespace = /\p{Space}/
|
18
19
|
letter = /[\p{L}$_]/
|
19
20
|
upper = /[\p{Lu}$_]/
|
@@ -24,8 +25,10 @@ module Rouge
|
|
24
25
|
# negative lookahead to filter out other classes
|
25
26
|
op = %r(
|
26
27
|
(?!#{whitespace}|#{letter}|#{digits}|#{parens}|#{delims})
|
27
|
-
[
|
28
|
+
[-!#%&*/:?@\\^\p{Sm}\p{So}]
|
28
29
|
)x
|
30
|
+
# manually removed +<=>|~ from regexp because they're in property Sm
|
31
|
+
# pp CHRS:(0x00..0x7f).map(&:chr).grep(/\p{Sm}/)
|
29
32
|
|
30
33
|
idrest = %r(#{letter}(?:#{letter}|#{digits})*(?:(?<=_)#{op}+)?)x
|
31
34
|
|
data/lib/rouge/lexers/sql.rb
CHANGED
@@ -115,7 +115,7 @@ module Rouge
|
|
115
115
|
rule %r/"/, Name::Variable, :double_string
|
116
116
|
rule %r/`/, Name::Variable, :backtick
|
117
117
|
|
118
|
-
rule %r/\w
|
118
|
+
rule %r/\w+/ do |m|
|
119
119
|
if self.class.keywords_type.include? m[0].upcase
|
120
120
|
token Name::Builtin
|
121
121
|
elsif self.class.keywords.include? m[0].upcase
|
data/lib/rouge/lexers/syzlang.rb
CHANGED
data/lib/rouge/lexers/toml.rb
CHANGED
@@ -20,20 +20,9 @@ module Rouge
|
|
20
20
|
rule %r/(true|false)/, Keyword::Constant
|
21
21
|
|
22
22
|
rule %r/(#{identifier})(\s*)(=)(\s*)(\{)/ do
|
23
|
-
groups Name::
|
23
|
+
groups Name::Property, Text, Operator, Text, Punctuation
|
24
24
|
push :inline
|
25
25
|
end
|
26
|
-
|
27
|
-
rule %r/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z/, Literal::Date
|
28
|
-
|
29
|
-
rule %r/[+-]?\d+(?:_\d+)*\.\d+(?:_\d+)*(?:[eE][+-]?\d+(?:_\d+)*)?/, Num::Float
|
30
|
-
rule %r/[+-]?\d+(?:_\d+)*[eE][+-]?\d+(?:_\d+)*/, Num::Float
|
31
|
-
rule %r/[+-]?(?:nan|inf)/, Num::Float
|
32
|
-
|
33
|
-
rule %r/0x\h+(?:_\h+)*/, Num::Hex
|
34
|
-
rule %r/0o[0-7]+(?:_[0-7]+)*/, Num::Oct
|
35
|
-
rule %r/0b[01]+(?:_[01]+)*/, Num::Bin
|
36
|
-
rule %r/[+-]?\d+(?:_\d+)*/, Num::Integer
|
37
26
|
end
|
38
27
|
|
39
28
|
state :root do
|
@@ -59,6 +48,17 @@ module Rouge
|
|
59
48
|
groups Name::Property, Text, Punctuation
|
60
49
|
end
|
61
50
|
|
51
|
+
rule %r/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z/, Literal::Date
|
52
|
+
|
53
|
+
rule %r/[+-]?\d+(?:_\d+)*\.\d+(?:_\d+)*(?:[eE][+-]?\d+(?:_\d+)*)?/, Num::Float
|
54
|
+
rule %r/[+-]?\d+(?:_\d+)*[eE][+-]?\d+(?:_\d+)*/, Num::Float
|
55
|
+
rule %r/[+-]?(?:nan|inf)/, Num::Float
|
56
|
+
|
57
|
+
rule %r/0x\h+(?:_\h+)*/, Num::Hex
|
58
|
+
rule %r/0o[0-7]+(?:_[0-7]+)*/, Num::Oct
|
59
|
+
rule %r/0b[01]+(?:_[01]+)*/, Num::Bin
|
60
|
+
rule %r/[+-]?\d+(?:_\d+)*/, Num::Integer
|
61
|
+
|
62
62
|
rule %r/"""/, Str, :mdq
|
63
63
|
rule %r/"/, Str, :dq
|
64
64
|
rule %r/'''/, Str, :msq
|
data/lib/rouge/lexers/ttcn3.rb
CHANGED
data/lib/rouge/lexers/xojo.rb
CHANGED
@@ -37,7 +37,7 @@ module Rouge
|
|
37
37
|
rule %r/\s+/, Text::Whitespace
|
38
38
|
|
39
39
|
rule %r/rem\b.*?$/i, Comment::Single
|
40
|
-
rule %r(
|
40
|
+
rule %r((?://|').*$), Comment::Single
|
41
41
|
rule %r/\#tag Note.*?\#tag EndNote/mi, Comment::Preproc
|
42
42
|
rule %r/\s*[#].*$/x, Comment::Preproc
|
43
43
|
|
data/lib/rouge/lexers/yang.rb
CHANGED
data/lib/rouge/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rouge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.
|
4
|
+
version: 4.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeanine Adkisson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Rouge aims to a be a simple, easy-to-extend drop-in replacement for pygments.
|
14
14
|
email:
|
@@ -547,7 +547,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
547
547
|
- !ruby/object:Gem::Version
|
548
548
|
version: '0'
|
549
549
|
requirements: []
|
550
|
-
rubygems_version: 3.
|
550
|
+
rubygems_version: 3.5.3
|
551
551
|
signing_key:
|
552
552
|
specification_version: 4
|
553
553
|
summary: A pure-ruby colorizer based on pygments
|