gitlab-glfm-markdown 0.0.10-aarch64-linux → 0.0.11-aarch64-linux

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: 8479888eead5fa88fa91d26e27f76a068cb7f4f8bb34b8c589ecd52d44639581
4
- data.tar.gz: 453256934265d78f06e0105201d4ab9f506eeee7af403558d5f2541514bfb294
3
+ metadata.gz: 89f546591b147d55180852634e39a4d9626f2993ccd7715d1a61d4aac0f25d2f
4
+ data.tar.gz: 1035e4ea6fd4ac53b26b62b984f1296fa1c9492085666dd27905f4f7872aa2c5
5
5
  SHA512:
6
- metadata.gz: 1b6855e52db34764c2d9736d498b5a8303f7ec4939a16ab0ef2c80e08a6bc6dec97d94eae019d13753b2699ae0aa8c2a05ac3db70ccd0a50d7048b7b062df8e8
7
- data.tar.gz: cd66148359bf693ae576f1b26d478299988f5bde62099542ed20bad5dc950475ba7fe3b286e24f1b896b4eb179e06a42b635f087aec73c08eb0776e7720885f6
6
+ metadata.gz: 0c9f9cf3594e7847a7af5a46ce90df745a40fd6bb0cb57641c10e93ec69a35d832b9e5d6189a1b29f12f61b3f17628361e9a3ac8dd2e2890fd8b160e02f38ae7
7
+ data.tar.gz: 3ecf1cd08b6f23326a2d73fe16d5c468171f2d5e71bb073634082c47845862e1ad52c50c0ae80c116317f38180a4e51eb65287f35c77d719c96c87ca95cffe14
data/Cargo.lock CHANGED
@@ -361,7 +361,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
361
361
 
362
362
  [[package]]
363
363
  name = "glfm_markdown"
364
- version = "0.0.8"
364
+ version = "0.0.11"
365
365
  dependencies = [
366
366
  "clap",
367
367
  "comrak",
data/README.md CHANGED
@@ -28,6 +28,12 @@ bin/console
28
28
  GLFMMarkdown.to_html('# header', options: { glfm: true })
29
29
  ```
30
30
 
31
+ ## Dingus / Demo
32
+
33
+ A demo is running via GitLab Pages, and can be accessed at:
34
+
35
+ https://gitlab-org.gitlab.io/ruby/gems/gitlab-glfm-markdown
36
+
31
37
  ## Development
32
38
 
33
39
  A command line executable can be built for debugging.
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "glfm_markdown"
3
- version = "0.0.8"
3
+ version = "0.0.11"
4
4
  edition = "2021"
5
5
  authors = ["digitalmoksha <bwalker@gitlab.com>"]
6
6
  description = "GitLab Flavored Markdown parser and formatter. 100% CommonMark-compatible. Experimental."
@@ -3,6 +3,6 @@
3
3
  require 'mkmf'
4
4
  require 'rb_sys/mkmf'
5
5
 
6
- create_rust_makefile('glfm_markdown') do |r|
6
+ create_rust_makefile('glfm_markdown/glfm_markdown') do |r|
7
7
  r.auto_install_rust_toolchain = false
8
8
  end
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -2,7 +2,7 @@
2
2
 
3
3
  def load_rust_extension
4
4
  ruby_version = /(\d+\.\d+)/.match(RUBY_VERSION)
5
- require_relative "./#{ruby_version}/glfm_markdown"
5
+ require "glfm_markdown/#{ruby_version}/glfm_markdown"
6
6
  rescue LoadError
7
7
  require 'glfm_markdown/glfm_markdown'
8
8
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GLFMMarkdown
4
- VERSION = '0.0.10'
4
+ VERSION = '0.0.11'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-glfm-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Brett Walker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-04 00:00:00.000000000 Z
11
+ date: 2024-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys