jekyll-vrml 2.2.3 → 2.2.4

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: '058e587892cca7d91e09cf14e065b5d6af6bd72f18341bc8b8035578e570bdce'
4
- data.tar.gz: dad67ec570413e39351478cb1666c5230093772b6f23a80b9532e1e42b63af02
3
+ metadata.gz: a109da3d389d6991891f9e665f2a5d951c3f7a000e8a124e59fd59c185a360ab
4
+ data.tar.gz: 4cd0fb83d0488ce85ffd1ee21b3edcfc711cfbd3eae82ed653a0e1af82c672a9
5
5
  SHA512:
6
- metadata.gz: 306c0fdf0311c080971466710c6e79d62074ea8615a2034010084255a43aa10c7c8ace4bc435b04b7e60a751d3c5d65bd24f42cda065cd20d24ec30611425819
7
- data.tar.gz: 63b92f7543e6b6c41d11a9f5bf2f9edf3406958cdd4ac6ba60385340781d46e5cc73fcc2decdbf6451c262d4f13bbc5744ab17b860dfd336ddaf8a68a9e3ae4b
6
+ metadata.gz: 01f13459f06c814c3d547f3b5bba27dbdb6278daf5807d19416308292fb1e87b81bc897288c8a081a052f4ce1a5af0830a9a330597f7c5060163f08e392086fe
7
+ data.tar.gz: 16fee11c140ec6a112242372d55ffbe7c09073076e66baabb4d7001da110cac2e7290eb177adde9663baeed914fbfe87befc59450c143d55f203419caa11e030
@@ -1,4 +1,4 @@
1
- The MIT License (MIT)
1
+ # The MIT License (MIT)
2
2
 
3
3
  Copyright (c) 2024 Holger Seelig
4
4
 
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # jekyll-vrml
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/jekyll-vrml.svg?icon=si%3Arubygems)](https://badge.fury.io/rb/jekyll-vrml)
4
+
3
5
  Adds support for VRML syntax highlighting to Jekyll. This allows developers to easily integrate and display X3D content within their Jekyll-powered websites.
4
6
 
5
7
  ## Usage
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllVrml
4
- VERSION = "2.2.3"
4
+ VERSION = "2.2.4"
5
5
  end
data/lib/jekyll-vrml.rb CHANGED
@@ -54,7 +54,7 @@ Jekyll::Hooks.register :site, :pre_render do |site|
54
54
  # https://github.com/rouge-ruby/rouge/blob/master/lib/rouge/lexers/javascript.rb
55
55
 
56
56
  rule %r/\b(?:TRUE|FALSE|NULL)\b/, Keyword::Constant
57
- rule %r/\b(?:SFBool|SFColor|SFColorRGBA|SFDouble|SFFloat|SFImage|SFInt32|SFMatrix3d|SFMatrix3f|SFMatrix4d|SFMatrix4f|VrmlMatrix|SFNode|SFRotation|SFString|SFTime|SFVec2d|SFVec2f|SFVec3d|SFVec3f|SFVec4d|SFVec4f|MFBool|MFColor|MFColorRGBA|MFDouble|MFFloat|MFImage|MFInt32|MFMatrix3d|MFMatrix3f|MFMatrix4d|MFMatrix4f|MFNode|MFRotation|MFString|MFTime|MFVec2d|MFVec2f|MFVec3d|MFVec3f|MFVec4d|MFVec4f)\b/, Keyword::Declaration
57
+ rule %r/\b(?:[SM]F(?:Bool|Color(?:RGBA)?|Double|Float|Image|Int32|Matrix[34][df]|Node|Rotation|String|Time|Vec[234][df]))\b/, Keyword::Declaration
58
58
 
59
59
  rule %r/#{id}(?=\s*\{)/, Name::Class # typeNames
60
60
  rule %r/#{id}/, Name::Attribute # fieldNames
@@ -84,7 +84,7 @@ Jekyll::Hooks.register :site, :pre_render do |site|
84
84
  end
85
85
 
86
86
  state :keywords do
87
- rule %r/\b(?:PROFILE|COMPONENT|UNIT|META|DEF|USE|EXTERNPROTO|PROTO|IS|ROUTE|TO|IMPORT|EXPORT|AS)\b/, Keyword
87
+ rule %r/\b(?:PROFILE|COMPONENT|UNIT|META|EXTERNPROTO|PROTO|IS|DEF|USE|ROUTE|TO|IMPORT|EXPORT|AS|DESCRIPTION)\b/, Keyword
88
88
  end
89
89
 
90
90
  state :accessTypes do
data/package.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "jekyll-vrml",
3
+ "license": "MIT",
3
4
  "scripts": {
4
5
  "prebuild": "rm -f ./*.gem",
5
6
  "build": "gem build jekyll-vrml.gemspec",
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-vrml
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.3
4
+ version: 2.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Holger Seelig
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-02-01 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Adds support for VRML syntax highlighting to Jekyll. This allows developers
14
13
  to easily integrate and display X3D content within their Jekyll-powered websites.
@@ -18,7 +17,7 @@ executables: []
18
17
  extensions: []
19
18
  extra_rdoc_files: []
20
19
  files:
21
- - LICENSE.txt
20
+ - LICENSE.md
22
21
  - README.md
23
22
  - build/merge-development.sh
24
23
  - lib/jekyll-vrml.rb
@@ -31,7 +30,6 @@ metadata:
31
30
  allowed_push_host: https://rubygems.org
32
31
  homepage_uri: https://github.com/create3000/jekyll-vrml/blob/main/README.md
33
32
  source_code_uri: https://github.com/create3000/jekyll-vrml/
34
- post_install_message:
35
33
  rdoc_options: []
36
34
  require_paths:
37
35
  - lib
@@ -46,8 +44,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
44
  - !ruby/object:Gem::Version
47
45
  version: '0'
48
46
  requirements: []
49
- rubygems_version: 3.5.9
50
- signing_key:
47
+ rubygems_version: 4.0.8
51
48
  specification_version: 4
52
49
  summary: VRML Syntax Highlighter
53
50
  test_files: []