md4c 0.0.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 +7 -0
- data/.clang-format +1 -0
- data/.envrc +8 -0
- data/CHANGELOG.md +7 -0
- data/COPYING +674 -0
- data/README.md +57 -0
- data/Rakefile +22 -0
- data/compile_flags.txt +5 -0
- data/ext/md4c/extconf.rb +35 -0
- data/ext/md4c/rb_md4c.c +741 -0
- data/ext/md4c/rb_md4c.h +25 -0
- data/lib/md4c/version.rb +22 -0
- data/lib/md4c.rb +148 -0
- data/sig/md4c.rbs +4 -0
- metadata +57 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: c064e8f934590bb55c5edfd5d1cb73821ef8c424347a58d48f9b4c00ccb85b8b
|
|
4
|
+
data.tar.gz: 35ca53caca0fd1184ee86a5330b720f00e87af94cfa8fd0f86b1ffaab5ed4819
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 919321d66c7e6a59676c471d97210c805e60492fabc706ac1b9d53d0d31362edc85d9c8237ea2eee3b67d69fa18f62d12ead2fd30c46ffbacd1222322d732a4b
|
|
7
|
+
data.tar.gz: ff3fd7f61e2fcbb8ce5a19d7a67605752df59c67efaa19b2fe7b36f0e2cc45434cd032c5af10f439832abbfb00739bb9fb7b0b216f04c5d36c3839211c5c659c
|
data/.clang-format
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
BasedOnStyle: GNU
|
data/.envrc
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
layout ruby
|
|
2
|
+
export INSTALL="/usr/bin/install -c"
|
|
3
|
+
export MAKEFLAGS=e
|
|
4
|
+
path_add C_INCLUDE_PATH /usr/local/include
|
|
5
|
+
path_add C_INCLUDE_PATH /usr/local/include/ruby-4.0
|
|
6
|
+
path_add C_INCLUDE_PATH /usr/local/include/ruby-4.0/x86_64-openbsd
|
|
7
|
+
path_add C_INCLUDE_PATH /usr/local/llvm21/lib/clang/21/include
|
|
8
|
+
path_add LD_LIBRARY_PATH /usr/local/lib
|