gitlab-glfm-markdown 0.0.10-x86_64-linux → 0.0.11-x86_64-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: 45b0938940e9b6b58979463e357c6185357210d32549780ba0f9ac14035dc499
4
- data.tar.gz: 717eae92e4896258363b8f52c335bcfd84b55d301674764a3e76cbe136ec883b
3
+ metadata.gz: 76b694774d002bfb9927d2b83126d0e599b41859e00a37612811ff9a55a81653
4
+ data.tar.gz: fa3781615d3db27bb930c530b1e7898eafe06069225a02b9fb4f1912ae232c05
5
5
  SHA512:
6
- metadata.gz: 3ffe6de4514f9341067ca988b8e09ff39dc0bb6266eef5d80f95526e75a0dba21fd4c85b15c72c7c3113dd1a10567bc191515e91388038f988e923d0f0fcf100
7
- data.tar.gz: f021965b080d6aeaa34a00a062e98e828e915d9bfef88c95683b97acb332f0c127b492f21780115d2b4554f72c64f3fbf13274a5b8bed4d9793810fff61fdbf6
6
+ metadata.gz: 378fd068f7f24dc7736847b7fd783a6a4e807baf98b45df46ab47383abd8b0dcbc3532b53bd84cfd0f2358b8af1eed18002391d52dcbd7d8dfeb3d4aa307244f
7
+ data.tar.gz: 5cf1d1128e2a09b6cb824acea05cc690cf597cf1dcca45b15eb8e1bdeeec46c3ab08ee88b9e788748ed27f2895f79ec8d22963002aad69d716726a8b7e97b1ef
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: x86_64-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