apex-ruby 1.0.6
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/README.md +119 -0
- data/apex-ruby.gemspec +31 -0
- data/ext/apex_ext/apex_ext.c +215 -0
- data/ext/apex_ext/apex_src/BENCHMARK.md +32 -0
- data/ext/apex_ext/apex_src/BENCHMARK_COMPARISON.md +67 -0
- data/ext/apex_ext/apex_src/CHANGELOG.md +2454 -0
- data/ext/apex_ext/apex_src/CMakeLists.txt +454 -0
- data/ext/apex_ext/apex_src/Dockerfile.linux-build +15 -0
- data/ext/apex_ext/apex_src/Formula/apex.rb +38 -0
- data/ext/apex_ext/apex_src/Info.plist.in +27 -0
- data/ext/apex_ext/apex_src/LICENSE +21 -0
- data/ext/apex_ext/apex_src/Package.swift +160 -0
- data/ext/apex_ext/apex_src/PackageSupport/README.md +17 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/cmark-gfm_export.h +20 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/cmark-gfm_version.h +14 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/cmark_gfm_spm_stub.c +4 -0
- data/ext/apex_ext/apex_src/PackageSupport/cmark-gfm/config.h +41 -0
- data/ext/apex_ext/apex_src/README.md +452 -0
- data/ext/apex_ext/apex_src/VERSION +1 -0
- data/ext/apex_ext/apex_src/apex-header-2-rb@2x.webp +0 -0
- data/ext/apex_ext/apex_src/apex-plugins.json.example +20 -0
- data/ext/apex_ext/apex_src/apex.pc.in +11 -0
- data/ext/apex_ext/apex_src/cli/main.c +2720 -0
- data/ext/apex_ext/apex_src/debug_test.sh +22 -0
- data/ext/apex_ext/apex_src/docs/API_REFERENCE.md +451 -0
- data/ext/apex_ext/apex_src/docs/ARCHITECTURE.md +166 -0
- data/ext/apex_ext/apex_src/docs/CMARK_INTEGRATION.md +220 -0
- data/ext/apex_ext/apex_src/docs/CRITICMARKUP.md +501 -0
- data/ext/apex_ext/apex_src/docs/DEBUGGING.md +73 -0
- data/ext/apex_ext/apex_src/docs/FINAL_STATUS.md +391 -0
- data/ext/apex_ext/apex_src/docs/FINAL_STATUS_UPDATE.md +237 -0
- data/ext/apex_ext/apex_src/docs/FUTURE_FEATURES.md +456 -0
- data/ext/apex_ext/apex_src/docs/IAL_FEATURES.md +210 -0
- data/ext/apex_ext/apex_src/docs/IAL_STATUS.md +344 -0
- data/ext/apex_ext/apex_src/docs/INTEGRATION_EXAMPLE.m +144 -0
- data/ext/apex_ext/apex_src/docs/LIMITATIONS_RESOLVED.md +278 -0
- data/ext/apex_ext/apex_src/docs/OUTPUT_MODES.md +321 -0
- data/ext/apex_ext/apex_src/docs/PROGRESS.md +167 -0
- data/ext/apex_ext/apex_src/docs/STANDALONE_FEATURE.md +174 -0
- data/ext/apex_ext/apex_src/docs/TABLE_SPANS_STATUS.md +243 -0
- data/ext/apex_ext/apex_src/docs/TEST_COVERAGE.md +316 -0
- data/ext/apex_ext/apex_src/docs/USER_GUIDE.md +803 -0
- data/ext/apex_ext/apex_src/docs/WIKI_LINKS_ISSUE.md +91 -0
- data/ext/apex_ext/apex_src/documentation/README.md +160 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex Command Line Options.cheatsheet.txt +365 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Info.plist +24 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/C-API.html +1737 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Citations.html +1420 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Command-Line-Options.html +3574 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Configuration.html +1603 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Credits.html +910 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Examples.html +1168 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Getting-Started.html +1003 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Header-IDs.html +1308 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Home.html +1078 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Inline-Attribute-Lists.html +1622 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Installation.html +1168 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Limitations-and-Roadmap.html +1698 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Metadata-Transforms.html +1531 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Modes.html +1980 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Multi-File-Documents.html +1368 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Pandoc-Integration.html +1151 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Plugins.html +2861 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Syntax.html +3981 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Troubleshooting.html +1454 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Usage.html +1200 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/Documents/Xcode-Integration.html +2066 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/docSet.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/optimizedIndex.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/Apex.docset/Contents/Resources/tempOptimizedIndex.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Info.plist +22 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Bold.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Bold_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Extrabold.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Extrabold_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Semibold.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/cheatset_resources/Open_Sans_Semibold_Italic.woff +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/index.html +914 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/Documents/style.css +399 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/docSet.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/docsets/ApexCLI.docset/Contents/Resources/optimizedIndex.dsidx +0 -0
- data/ext/apex_ext/apex_src/documentation/generate_app_docs.rb +772 -0
- data/ext/apex_ext/apex_src/documentation/generate_app_docs_ai.rb +678 -0
- data/ext/apex_ext/apex_src/documentation/generate_docset.rb +873 -0
- data/ext/apex_ext/apex_src/documentation/generate_single_html.rb +733 -0
- data/ext/apex_ext/apex_src/documentation/html/apex-docs.html +17073 -0
- data/ext/apex_ext/apex_src/documentation/shared_scripts.js +64 -0
- data/ext/apex_ext/apex_src/documentation/shared_styles.css +646 -0
- data/ext/apex_ext/apex_src/documentation/transform_for_app.example.md +260 -0
- data/ext/apex_ext/apex_src/examples/bracketed_spans_demo.md +119 -0
- data/ext/apex_ext/apex_src/examples/emoji_span_plugin.yml +11 -0
- data/ext/apex_ext/apex_src/examples/example.html +53 -0
- data/ext/apex_ext/apex_src/examples/example.md +85 -0
- data/ext/apex_ext/apex_src/examples/fenced_divs_demo.md +158 -0
- data/ext/apex_ext/apex_src/examples/kbd.md +8 -0
- data/ext/apex_ext/apex_src/examples/kbd_plugin.rb +250 -0
- data/ext/apex_ext/apex_src/examples/kbd_plugin.yml +9 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-black.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-black@2x.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-mark.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-mark@2x.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-white.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon-outline-white@2x.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon.png +0 -0
- data/ext/apex_ext/apex_src/icon/apexicon@2x.png +0 -0
- data/ext/apex_ext/apex_src/include/apex/apex.h +247 -0
- data/ext/apex_ext/apex_src/include/apex/buffer.h +93 -0
- data/ext/apex_ext/apex_src/include/apex/module.modulemap +16 -0
- data/ext/apex_ext/apex_src/include/apex/parser.h +150 -0
- data/ext/apex_ext/apex_src/include/apex/renderer.h +39 -0
- data/ext/apex_ext/apex_src/man/apex-config.5 +374 -0
- data/ext/apex_ext/apex_src/man/apex-config.5.md +260 -0
- data/ext/apex_ext/apex_src/man/apex-plugins.7 +456 -0
- data/ext/apex_ext/apex_src/man/apex-plugins.7.md +365 -0
- data/ext/apex_ext/apex_src/man/apex.1 +828 -0
- data/ext/apex_ext/apex_src/man/apex.1.md +643 -0
- data/ext/apex_ext/apex_src/man/apex.1.new +338 -0
- data/ext/apex_ext/apex_src/objc/Apex.swift +237 -0
- data/ext/apex_ext/apex_src/objc/NSString+Apex.h +117 -0
- data/ext/apex_ext/apex_src/objc/NSString+Apex.m +332 -0
- data/ext/apex_ext/apex_src/src/_README.md +358 -0
- data/ext/apex_ext/apex_src/src/apex.c +6326 -0
- data/ext/apex_ext/apex_src/src/buffer.c +93 -0
- data/ext/apex_ext/apex_src/src/extensions/abbreviations.c +362 -0
- data/ext/apex_ext/apex_src/src/extensions/abbreviations.h +45 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_footnotes.c +184 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_footnotes.h +50 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_tables.c +1897 -0
- data/ext/apex_ext/apex_src/src/extensions/advanced_tables.h +42 -0
- data/ext/apex_ext/apex_src/src/extensions/callouts.c +215 -0
- data/ext/apex_ext/apex_src/src/extensions/callouts.h +53 -0
- data/ext/apex_ext/apex_src/src/extensions/citations.c +2042 -0
- data/ext/apex_ext/apex_src/src/extensions/citations.h +163 -0
- data/ext/apex_ext/apex_src/src/extensions/critic.c +329 -0
- data/ext/apex_ext/apex_src/src/extensions/critic.h +48 -0
- data/ext/apex_ext/apex_src/src/extensions/definition_list.c +1670 -0
- data/ext/apex_ext/apex_src/src/extensions/definition_list.h +42 -0
- data/ext/apex_ext/apex_src/src/extensions/emoji.c +710 -0
- data/ext/apex_ext/apex_src/src/extensions/emoji.h +38 -0
- data/ext/apex_ext/apex_src/src/extensions/emoji_data.h +942 -0
- data/ext/apex_ext/apex_src/src/extensions/fenced_divs.c +925 -0
- data/ext/apex_ext/apex_src/src/extensions/fenced_divs.h +43 -0
- data/ext/apex_ext/apex_src/src/extensions/github-emoji.txt +869 -0
- data/ext/apex_ext/apex_src/src/extensions/grid_tables.c +1121 -0
- data/ext/apex_ext/apex_src/src/extensions/grid_tables.h +33 -0
- data/ext/apex_ext/apex_src/src/extensions/header_ids.c +626 -0
- data/ext/apex_ext/apex_src/src/extensions/header_ids.h +60 -0
- data/ext/apex_ext/apex_src/src/extensions/highlight.c +135 -0
- data/ext/apex_ext/apex_src/src/extensions/highlight.h +16 -0
- data/ext/apex_ext/apex_src/src/extensions/html_markdown.c +408 -0
- data/ext/apex_ext/apex_src/src/extensions/html_markdown.h +42 -0
- data/ext/apex_ext/apex_src/src/extensions/ial.c +4084 -0
- data/ext/apex_ext/apex_src/src/extensions/ial.h +145 -0
- data/ext/apex_ext/apex_src/src/extensions/includes.c +1536 -0
- data/ext/apex_ext/apex_src/src/extensions/includes.h +54 -0
- data/ext/apex_ext/apex_src/src/extensions/index.c +967 -0
- data/ext/apex_ext/apex_src/src/extensions/index.h +90 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_footnotes.c +205 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_footnotes.h +34 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_tables.c +332 -0
- data/ext/apex_ext/apex_src/src/extensions/inline_tables.h +13 -0
- data/ext/apex_ext/apex_src/src/extensions/insert.c +248 -0
- data/ext/apex_ext/apex_src/src/extensions/insert.h +18 -0
- data/ext/apex_ext/apex_src/src/extensions/math.c +279 -0
- data/ext/apex_ext/apex_src/src/extensions/math.h +32 -0
- data/ext/apex_ext/apex_src/src/extensions/metadata.c +3046 -0
- data/ext/apex_ext/apex_src/src/extensions/metadata.h +125 -0
- data/ext/apex_ext/apex_src/src/extensions/relaxed_tables.c +1297 -0
- data/ext/apex_ext/apex_src/src/extensions/relaxed_tables.h +39 -0
- data/ext/apex_ext/apex_src/src/extensions/special_markers.c +194 -0
- data/ext/apex_ext/apex_src/src/extensions/special_markers.h +29 -0
- data/ext/apex_ext/apex_src/src/extensions/sup_sub.c +405 -0
- data/ext/apex_ext/apex_src/src/extensions/sup_sub.h +16 -0
- data/ext/apex_ext/apex_src/src/extensions/syntax_highlight.c +468 -0
- data/ext/apex_ext/apex_src/src/extensions/syntax_highlight.h +44 -0
- data/ext/apex_ext/apex_src/src/extensions/table_html_postprocess.c +2679 -0
- data/ext/apex_ext/apex_src/src/extensions/table_html_postprocess.h +23 -0
- data/ext/apex_ext/apex_src/src/extensions/toc.c +255 -0
- data/ext/apex_ext/apex_src/src/extensions/toc.h +34 -0
- data/ext/apex_ext/apex_src/src/extensions/wiki_links.c +624 -0
- data/ext/apex_ext/apex_src/src/extensions/wiki_links.h +58 -0
- data/ext/apex_ext/apex_src/src/html_renderer.c +2762 -0
- data/ext/apex_ext/apex_src/src/html_renderer.h +126 -0
- data/ext/apex_ext/apex_src/src/parser.c +227 -0
- data/ext/apex_ext/apex_src/src/plugins.c +895 -0
- data/ext/apex_ext/apex_src/src/plugins.h +39 -0
- data/ext/apex_ext/apex_src/src/plugins_env.c +187 -0
- data/ext/apex_ext/apex_src/src/plugins_remote.c +263 -0
- data/ext/apex_ext/apex_src/src/pretty_html.c +358 -0
- data/ext/apex_ext/apex_src/src/renderer.c +241 -0
- data/ext/apex_ext/apex_src/src/utf8.c +56 -0
- data/ext/apex_ext/apex_src/test-linux-build.sh +20 -0
- data/ext/apex_ext/apex_src/test.html +103 -0
- data/ext/apex_ext/apex_src/test_coverage.sh +121 -0
- data/ext/apex_ext/apex_src/test_ial_fenced.md +6 -0
- data/ext/apex_ext/apex_src/test_math_norm.py +79 -0
- data/ext/apex_ext/apex_src/test_pandoc_output.html +48 -0
- data/ext/apex_ext/apex_src/test_spm.sh +107 -0
- data/ext/apex_ext/apex_src/tests/ApexSPMTest/main.swift +50 -0
- data/ext/apex_ext/apex_src/tests/BENCHMARK_RESULTS.md +229 -0
- data/ext/apex_ext/apex_src/tests/CMakeLists.txt +24 -0
- data/ext/apex_ext/apex_src/tests/README.md +146 -0
- data/ext/apex_ext/apex_src/tests/benchmark.sh +113 -0
- data/ext/apex_ext/apex_src/tests/benchmark_comparison.sh +166 -0
- data/ext/apex_ext/apex_src/tests/compare_header_ids.sh +31 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/headers.md +25 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/list-interruption.md +24 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/misc_markup.md +33 -0
- data/ext/apex_ext/apex_src/tests/fixtures/basic/test_basic.md +26 -0
- data/ext/apex_ext/apex_src/tests/fixtures/code/code-blocks.md +260 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/SUMMARY.md +6 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/chapter1.md +7 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/index.txt +9 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/intro.md +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/combine_summary/section1_1.md +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/comprehensive_test.md +620 -0
- data/ext/apex_ext/apex_src/tests/fixtures/debug_ref_image_ial.md +3 -0
- data/ext/apex_ext/apex_src/tests/fixtures/demos/ial.md +11 -0
- data/ext/apex_ext/apex_src/tests/fixtures/demos/ial_demo.md +177 -0
- data/ext/apex_ext/apex_src/tests/fixtures/extensions/emoji-autocorrect.md +94 -0
- data/ext/apex_ext/apex_src/tests/fixtures/extensions/emoji_test.md +3 -0
- data/ext/apex_ext/apex_src/tests/fixtures/extensions/kbd_test.md +3 -0
- data/ext/apex_ext/apex_src/tests/fixtures/ial/bracketed_spans_test.md +74 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/image_and_encoding_test.md +27 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/multimarkdown_image_attributes_test.md +60 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/pandoc_ial_image_test.md +27 -0
- data/ext/apex_ext/apex_src/tests/fixtures/images/width_height_conversion_test.md +94 -0
- data/ext/apex_ext/apex_src/tests/fixtures/img-in-div.md +16 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/code.py +4 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/data.csv +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/data.tsv +5 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/image.png +2 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/metadata_options.yml +11 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/nested.md +8 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/raw.html +4 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/simple.md +7 -0
- data/ext/apex_ext/apex_src/tests/fixtures/includes/test_image.png +0 -0
- data/ext/apex_ext/apex_src/tests/fixtures/large_doc.md +1094 -0
- data/ext/apex_ext/apex_src/tests/fixtures/metadata_options.yml +11 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/gfm_header_id_test.md +96 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_citations.md +43 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_def_list_links.md +12 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_index_mmark.md +53 -0
- data/ext/apex_ext/apex_src/tests/fixtures/output/test_index_textindex.md +37 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/advanced_tables_test.md +93 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/inline_tables_test.md +38 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/relaxed-table.md +12 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/table_cr_line_endings.md +15 -0
- data/ext/apex_ext/apex_src/tests/fixtures/tables/table_no_trailing_newline.md +15 -0
- data/ext/apex_ext/apex_src/tests/generate_gfm_ids.sh +105 -0
- data/ext/apex_ext/apex_src/tests/generate_ial_demo.sh +143 -0
- data/ext/apex_ext/apex_src/tests/gfm_id_comparison_summary.md +96 -0
- data/ext/apex_ext/apex_src/tests/gh_api_test.md +6 -0
- data/ext/apex_ext/apex_src/tests/ial_demo.html +186 -0
- data/ext/apex_ext/apex_src/tests/include_code.py +19 -0
- data/ext/apex_ext/apex_src/tests/include_snippet.md +15 -0
- data/ext/apex_ext/apex_src/tests/multi_file_cli_test.sh +64 -0
- data/ext/apex_ext/apex_src/tests/sample_data.csv +7 -0
- data/ext/apex_ext/apex_src/tests/table_escaped_ltlt.md +4 -0
- data/ext/apex_ext/apex_src/tests/test_basic.c +74 -0
- data/ext/apex_ext/apex_src/tests/test_extensions.c +2116 -0
- data/ext/apex_ext/apex_src/tests/test_helpers.c +183 -0
- data/ext/apex_ext/apex_src/tests/test_helpers.h +91 -0
- data/ext/apex_ext/apex_src/tests/test_ial.c +282 -0
- data/ext/apex_ext/apex_src/tests/test_links.c +418 -0
- data/ext/apex_ext/apex_src/tests/test_marked_integration.c +265 -0
- data/ext/apex_ext/apex_src/tests/test_metadata.c +908 -0
- data/ext/apex_ext/apex_src/tests/test_output.c +1118 -0
- data/ext/apex_ext/apex_src/tests/test_plugins.c +219 -0
- data/ext/apex_ext/apex_src/tests/test_refs.bib +31 -0
- data/ext/apex_ext/apex_src/tests/test_runner.c +244 -0
- data/ext/apex_ext/apex_src/tests/test_syntax_highlight.c +198 -0
- data/ext/apex_ext/apex_src/tests/test_tables.c +862 -0
- data/ext/apex_ext/apex_src/tests/update_benchmarks.sh +9 -0
- data/ext/apex_ext/apex_src/tests/yaml_test.md +13 -0
- data/ext/apex_ext/apex_src/tests.rb +39 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/CMakeLists.txt +48 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/COPYING +170 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/CheckFileOffsetBits.c +14 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/CheckFileOffsetBits.cmake +43 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/FindAsan.cmake +74 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/Makefile.nmake +38 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/README.md +206 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/CMakeLists.txt +30 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/cplusplus.cpp +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/cplusplus.h +16 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/harness.c +111 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/harness.h +35 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/api_test/main.c +1169 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/appveyor.yml +21 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-bq-flat.md +16 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-bq-nested.md +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-code.md +11 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-fences.md +14 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-heading.md +9 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-hr.md +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-html.md +32 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-lheading.md +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-list-flat.md +67 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-list-nested.md +36 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-ref-flat.md +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/block-ref-nested.md +17 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-autolink.md +14 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-backticks.md +3 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-em-flat.md +5 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-em-nested.md +5 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-em-worst.md +5 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-entity.md +11 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-escape.md +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-html.md +44 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-links-flat.md +23 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-links-nested.md +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/inline-newlines.md +24 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/lorem1.md +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/samples/rawtabs.md +18 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/statistics.py +595 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/bench/stats.py +19 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/benchmarks.md +33 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/changelog.txt +1245 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/data/CaseFolding.txt +1495 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/CMakeLists.txt +119 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/autolink.c +508 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/autolink.h +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/cmark-gfm-core-extensions.h +54 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/core-extensions.c +27 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/ext_scanners.c +879 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/ext_scanners.h +24 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/ext_scanners.re +92 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/strikethrough.c +167 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/strikethrough.h +9 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/table.c +917 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/table.h +12 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tagfilter.c +60 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tagfilter.h +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tasklist.c +156 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/extensions/tasklist.h +8 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/CMakeLists.txt +22 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/README.md +12 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/fuzz_quadratic.c +91 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/fuzz_quadratic_brackets.c +110 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/fuzz/fuzzloop.sh +28 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/CMakeLists.txt +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/make_man_page.py +133 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/man1/cmark-gfm.1 +78 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/man/man3/cmark-gfm.3 +1041 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/nmake.bat +1 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/CMakeLists.txt +230 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/arena.c +104 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/blocks.c +1622 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/buffer.c +278 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/buffer.h +116 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/case_fold_switch.inc +4327 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/chunk.h +135 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark-gfm-extension_api.h +737 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark-gfm.h +833 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark-gfm_version.h.in +7 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark.c +55 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark_ctype.c +44 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/cmark_ctype.h +33 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/commonmark.c +514 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/config.h.in +76 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/entities.inc +2138 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/footnotes.c +63 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/footnotes.h +27 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini.h +57 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini_href_e.c +100 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini_html_e.c +66 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/houdini_html_u.c +149 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/html.c +502 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/html.h +27 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/inlines.c +1788 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/inlines.h +29 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/iterator.c +159 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/iterator.h +26 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/latex.c +468 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/libcmark-gfm.pc.in +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/linked_list.c +37 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/main.c +328 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/man.c +274 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/map.c +129 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/map.h +44 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/node.c +1045 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/node.h +167 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/parser.h +59 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/plaintext.c +218 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/plugin.c +36 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/plugin.h +34 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/references.c +43 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/references.h +26 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/registry.c +63 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/registry.h +24 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/render.c +213 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/render.h +62 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/scanners.c +14056 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/scanners.h +70 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/scanners.re +365 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/syntax_extension.c +149 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/syntax_extension.h +34 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/utf8.c +317 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/utf8.h +35 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/src/xml.c +182 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/suppressions +10 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/CMakeLists.txt +114 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/afl_test_cases/test.md +49 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/cmark-fuzz.c +58 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/cmark.py +105 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/entity_tests.py +67 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/extensions-full-info-string.txt +0 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/extensions-table-prefer-style-attributes.txt +38 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/extensions.txt +920 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/fuzzing_dictionary +67 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/normalize.py +194 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/pathological_tests.py +160 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/regression.txt +375 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/roundtrip_tests.py +50 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/run-cmark-fuzz +4 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/smart_punct.txt +177 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/spec.txt +10212 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/test/spec_tests.py +152 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/toolchain-mingw32.cmake +17 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/Dockerfile +41 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/appveyor-build.bat +13 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/make_entities_inc.py +32 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/mkcasefold.pl +22 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/xml2md.xsl +319 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/tools/xml2md_gfm.xsl +80 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/why-cmark-and-not-x.md +104 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.js +6 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.py +37 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.rb +15 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper.rkt +208 -0
- data/ext/apex_ext/apex_src/vendor/cmark-gfm/wrappers/wrapper_ext.py +109 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/CMakeLists.txt +160 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/Changes +372 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/License +20 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/Makefile.am +51 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/ReadMe.md +46 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/announcement.msg +89 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/bootstrap +3 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/cmake/config.h.in +4 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/configure.ac +73 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/doc/doxygen.cfg +222 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/README.mkd +17 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/alpine-3.7 +26 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/fedora-25 +26 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/ubuntu-14.04 +29 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/docker/ubuntu-16.04 +24 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/anchors.yaml +10 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/array.yaml +2 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/global-tag.yaml +14 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/json.yaml +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/mapping.yaml +2 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/numbers.yaml +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/strings.yaml +7 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/tags.yaml +7 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/examples/yaml-version.yaml +3 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/include/Makefile.am +17 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/include/yaml.h +1999 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/ReadMe.md +77 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/docker/Dockerfile +32 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/docker/output/ReadMe +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/pkg/docker/scripts/libyaml-dist.sh +23 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/regression-inputs/clusterfuzz-testcase-minimized-5607885063061504.yml +1 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/Makefile.am +4 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/api.c +1393 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/dumper.c +394 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/emitter.c +2358 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/loader.c +544 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/parser.c +1416 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/reader.c +469 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/scanner.c +3598 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/writer.c +141 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/src/yaml_private.h +684 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/CMakeLists.txt +27 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/Makefile.am +9 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/ReadMe.md +63 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-deconstructor-alt.c +800 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-deconstructor.c +1127 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-reformatter-alt.c +217 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/example-reformatter.c +202 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-all-tests.sh +29 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-dumper.c +314 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-emitter-test-suite.c +290 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-emitter.c +327 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-loader.c +63 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-parser-test-suite.c +196 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-parser.c +88 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/run-scanner.c +63 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/test-reader.c +354 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/tests/test-version.c +29 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/yaml-0.1.pc.in +10 -0
- data/ext/apex_ext/apex_src/vendor/libyaml/yamlConfig.cmake.in +16 -0
- data/ext/apex_ext/extconf.rb +103 -0
- data/lib/apex/configurable.rb +46 -0
- data/lib/apex/document.rb +66 -0
- data/lib/apex/version.rb +15 -0
- data/lib/apex.rb +28 -0
- metadata +544 -0
|
@@ -0,0 +1,372 @@
|
|
|
1
|
+
0.2.5 2020-06-01
|
|
2
|
+
|
|
3
|
+
https://github.com/yaml/libyaml/pull/105
|
|
4
|
+
Allow question marks in plain scalars in flow collections
|
|
5
|
+
|
|
6
|
+
https://github.com/yaml/libyaml/pull/186
|
|
7
|
+
Emitter: Don't output trailing space for empty scalar nodes
|
|
8
|
+
|
|
9
|
+
https://github.com/yaml/libyaml/pull/185
|
|
10
|
+
Emitter: Output space after an alias mapping key
|
|
11
|
+
|
|
12
|
+
https://github.com/yaml/libyaml/pull/187
|
|
13
|
+
Add -h and --flow (on|off|keep) to run-*-test-suite
|
|
14
|
+
|
|
15
|
+
https://github.com/yaml/libyaml/pull/182
|
|
16
|
+
Remove unnecessary include and malloc
|
|
17
|
+
|
|
18
|
+
https://github.com/yaml/libyaml/pull/177
|
|
19
|
+
Add specific files back to .gitignore
|
|
20
|
+
|
|
21
|
+
https://github.com/yaml/libyaml/pull/181
|
|
22
|
+
Output error position in run-parser-test-suite.c
|
|
23
|
+
|
|
24
|
+
https://github.com/yaml/libyaml/pull/191
|
|
25
|
+
A couple patches to improve test suite support
|
|
26
|
+
|
|
27
|
+
0.2.4 2020-04-19
|
|
28
|
+
|
|
29
|
+
- https://github.com/yaml/libyaml/pull/143
|
|
30
|
+
Add packaging/docker-dist to Makefile.am
|
|
31
|
+
|
|
32
|
+
- https://github.com/yaml/libyaml/pull/174
|
|
33
|
+
Fix logic for document end before directive
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
0.2.3 2020-04-11
|
|
37
|
+
|
|
38
|
+
- https://github.com/yaml/libyaml/pull/130
|
|
39
|
+
Fixed typo.
|
|
40
|
+
|
|
41
|
+
- https://github.com/yaml/libyaml/pull/144
|
|
42
|
+
Fix typo in comment
|
|
43
|
+
|
|
44
|
+
- https://github.com/yaml/libyaml/pull/140
|
|
45
|
+
Use pointer to const for strings that aren't/shouldn't be modified
|
|
46
|
+
|
|
47
|
+
- https://github.com/yaml/libyaml/pull/128
|
|
48
|
+
Squash a couple of warnings in example-deconstructor-alt
|
|
49
|
+
|
|
50
|
+
- https://github.com/yaml/libyaml/pull/151
|
|
51
|
+
Fix spelling for error message
|
|
52
|
+
|
|
53
|
+
- https://github.com/yaml/libyaml/pull/161
|
|
54
|
+
Make appveyor config be a hidden file
|
|
55
|
+
|
|
56
|
+
- https://github.com/yaml/libyaml/pull/159
|
|
57
|
+
Add CHANGES file
|
|
58
|
+
|
|
59
|
+
- https://github.com/yaml/libyaml/pull/160
|
|
60
|
+
Always output document end before directive (YAML 1.2 compatibility)
|
|
61
|
+
|
|
62
|
+
- https://github.com/yaml/libyaml/pull/162
|
|
63
|
+
Output document end marker after open ended scalars
|
|
64
|
+
|
|
65
|
+
- https://github.com/yaml/libyaml/pull/157
|
|
66
|
+
change cmake target name from libOFF.a to libyaml.a
|
|
67
|
+
|
|
68
|
+
- https://github.com/yaml/libyaml/pull/155
|
|
69
|
+
include/yaml.h: fix comments
|
|
70
|
+
|
|
71
|
+
- https://github.com/yaml/libyaml/pull/169
|
|
72
|
+
Fixed missing token in example
|
|
73
|
+
|
|
74
|
+
- https://github.com/yaml/libyaml/pull/127
|
|
75
|
+
Avoid recursion in the document loader.
|
|
76
|
+
|
|
77
|
+
- https://github.com/yaml/libyaml/pull/172
|
|
78
|
+
Support %YAML 1.2 directives
|
|
79
|
+
|
|
80
|
+
- https://github.com/yaml/libyaml/pull/66
|
|
81
|
+
Change dllexport controlling macro to use _WIN32
|
|
82
|
+
|
|
83
|
+
0.2.2 2019-03-12
|
|
84
|
+
|
|
85
|
+
- https://github.com/yaml/libyaml/pull/95
|
|
86
|
+
build: do not install config.h
|
|
87
|
+
|
|
88
|
+
- https://github.com/yaml/libyaml/pull/97
|
|
89
|
+
appveyor.yml: fix Release build
|
|
90
|
+
|
|
91
|
+
- https://github.com/yaml/libyaml/pull/103
|
|
92
|
+
Remove unused code in yaml_document_delete
|
|
93
|
+
|
|
94
|
+
- https://github.com/yaml/libyaml/pull/104
|
|
95
|
+
Allow colons in plain scalars inside flow collections
|
|
96
|
+
|
|
97
|
+
- https://github.com/yaml/libyaml/pull/109
|
|
98
|
+
Fix comparison in tests/run-emitter.c
|
|
99
|
+
|
|
100
|
+
- https://github.com/yaml/libyaml/pull/117
|
|
101
|
+
Fix typo error
|
|
102
|
+
|
|
103
|
+
- https://github.com/yaml/libyaml/pull/119
|
|
104
|
+
The closing single quote needs to be indented...
|
|
105
|
+
|
|
106
|
+
- https://github.com/yaml/libyaml/pull/121
|
|
107
|
+
fix token name typos in comments
|
|
108
|
+
|
|
109
|
+
- https://github.com/yaml/libyaml/pull/122
|
|
110
|
+
Revert removing of open_ended after top level plain scalar
|
|
111
|
+
|
|
112
|
+
- https://github.com/yaml/libyaml/pull/125
|
|
113
|
+
Cherry-picks from PR 27
|
|
114
|
+
|
|
115
|
+
- https://github.com/yaml/libyaml/pull/135
|
|
116
|
+
Windows/C89 compatibility
|
|
117
|
+
|
|
118
|
+
- https://github.com/yaml/libyaml/pull/136
|
|
119
|
+
allow override of Windows static lib name
|
|
120
|
+
|
|
121
|
+
0.2.1 2018-06-24
|
|
122
|
+
|
|
123
|
+
- https://github.com/yaml/libyaml/pull/10
|
|
124
|
+
Support static and dynamic libraries
|
|
125
|
+
|
|
126
|
+
- https://github.com/yaml/libyaml/pull/12
|
|
127
|
+
Use .gitignore instead of .hgignore
|
|
128
|
+
|
|
129
|
+
- https://github.com/yaml/libyaml/pull/13
|
|
130
|
+
Add support for `make test` and travis
|
|
131
|
+
|
|
132
|
+
- https://github.com/yaml/libyaml/pull/14
|
|
133
|
+
Dockerfile for testing
|
|
134
|
+
|
|
135
|
+
- https://github.com/yaml/libyaml/pull/15
|
|
136
|
+
Apply old fix for `\/` that is not in master.
|
|
137
|
+
|
|
138
|
+
- https://github.com/yaml/libyaml/pull/17
|
|
139
|
+
Update license to include all years until now.
|
|
140
|
+
|
|
141
|
+
- https://github.com/yaml/libyaml/pull/18
|
|
142
|
+
Port bug fix from Perl binding
|
|
143
|
+
|
|
144
|
+
- https://github.com/yaml/libyaml/pull/22
|
|
145
|
+
Fix misspell: preceed
|
|
146
|
+
|
|
147
|
+
- https://github.com/yaml/libyaml/pull/23
|
|
148
|
+
Removed trailing-whitespaces
|
|
149
|
+
|
|
150
|
+
- https://github.com/yaml/libyaml/pull/24
|
|
151
|
+
Fix typo
|
|
152
|
+
|
|
153
|
+
- https://github.com/yaml/libyaml/pull/25
|
|
154
|
+
added an examples directory with a few yaml examples
|
|
155
|
+
|
|
156
|
+
- https://github.com/yaml/libyaml/pull/26
|
|
157
|
+
Added missing Cflags path in pkg-config file
|
|
158
|
+
|
|
159
|
+
- https://github.com/yaml/libyaml/pull/31
|
|
160
|
+
add unit tests to cmake configuration
|
|
161
|
+
|
|
162
|
+
- https://github.com/yaml/libyaml/pull/32
|
|
163
|
+
Include an example of a custom tag from Python
|
|
164
|
+
|
|
165
|
+
- https://github.com/yaml/libyaml/pull/33
|
|
166
|
+
Include an example of a %YAML tag
|
|
167
|
+
|
|
168
|
+
- https://github.com/yaml/libyaml/pull/34
|
|
169
|
+
Added an example of using a global tag
|
|
170
|
+
|
|
171
|
+
- https://github.com/yaml/libyaml/pull/36
|
|
172
|
+
Fix -Wformat compilation errors in tests
|
|
173
|
+
|
|
174
|
+
- https://github.com/yaml/libyaml/pull/37
|
|
175
|
+
Update bug report URL in LibYAML
|
|
176
|
+
|
|
177
|
+
- https://github.com/yaml/libyaml/pull/38
|
|
178
|
+
Use AM_CPPFLAGS since autotools deprecated INCLUDE
|
|
179
|
+
|
|
180
|
+
- https://github.com/yaml/libyaml/pull/39
|
|
181
|
+
Update bug report URL in README
|
|
182
|
+
|
|
183
|
+
- https://github.com/yaml/libyaml/pull/41
|
|
184
|
+
Add travis and Makefile support for libyaml-test
|
|
185
|
+
|
|
186
|
+
- https://github.com/yaml/libyaml/pull/43
|
|
187
|
+
Add Dockerfile for Fedora 25
|
|
188
|
+
|
|
189
|
+
- https://github.com/yaml/libyaml/pull/44
|
|
190
|
+
WIP: Enable all warnings (-Wall) in libyaml and tests
|
|
191
|
+
|
|
192
|
+
- https://github.com/yaml/libyaml/pull/45
|
|
193
|
+
Fix typo
|
|
194
|
+
|
|
195
|
+
- https://github.com/yaml/libyaml/pull/47
|
|
196
|
+
Move travis script guts to separate file
|
|
197
|
+
|
|
198
|
+
- https://github.com/yaml/libyaml/pull/48
|
|
199
|
+
`yaml/libyaml-test` should become part of `yaml/libyaml`
|
|
200
|
+
|
|
201
|
+
- https://github.com/yaml/libyaml/pull/50
|
|
202
|
+
Add a GNUMakefile for immediate make targets
|
|
203
|
+
|
|
204
|
+
- https://github.com/yaml/libyaml/pull/53
|
|
205
|
+
Switch from test blacklist to whitelist
|
|
206
|
+
|
|
207
|
+
- https://github.com/yaml/libyaml/pull/55
|
|
208
|
+
Update defs for MingGW support on Windows
|
|
209
|
+
|
|
210
|
+
- https://github.com/yaml/libyaml/pull/58
|
|
211
|
+
Improve CMakeLists
|
|
212
|
+
|
|
213
|
+
- https://github.com/yaml/libyaml/pull/64
|
|
214
|
+
README: Update libyaml link
|
|
215
|
+
|
|
216
|
+
- https://github.com/yaml/libyaml/pull/69
|
|
217
|
+
Skip 5 tests in libyaml-emitter.list
|
|
218
|
+
|
|
219
|
+
- https://github.com/yaml/libyaml/pull/74
|
|
220
|
+
Forbid escaped singlequote in doublequotes
|
|
221
|
+
|
|
222
|
+
- https://github.com/yaml/libyaml/pull/76
|
|
223
|
+
Rewrite make test-suite
|
|
224
|
+
|
|
225
|
+
- https://github.com/yaml/libyaml/pull/77
|
|
226
|
+
Undefined PTRDIFF_MAX on HP-UX
|
|
227
|
+
|
|
228
|
+
- https://github.com/yaml/libyaml/pull/78
|
|
229
|
+
Fixed most compiler warnings -Wall -Wextra
|
|
230
|
+
|
|
231
|
+
- https://github.com/yaml/libyaml/pull/82
|
|
232
|
+
Move yaml-test-suite integration onto a separate branch.
|
|
233
|
+
|
|
234
|
+
- https://github.com/yaml/libyaml/pull/86
|
|
235
|
+
Fix problems in CI failures (travis and semaphore)
|
|
236
|
+
|
|
237
|
+
- https://github.com/yaml/libyaml/pull/87
|
|
238
|
+
appveyor.yml: add mingw-w64 builds
|
|
239
|
+
|
|
240
|
+
- https://github.com/yaml/libyaml/pull/88
|
|
241
|
+
add -no-undefined to src/Makefile.am
|
|
242
|
+
|
|
243
|
+
- https://github.com/yaml/libyaml/pull/89
|
|
244
|
+
Added alpine linux testing to dockerfiles
|
|
245
|
+
|
|
246
|
+
- https://github.com/yaml/libyaml/pull/93
|
|
247
|
+
remove need for PTRDIFF_MAX
|
|
248
|
+
|
|
249
|
+
- https://github.com/yaml/libyaml/pull/94
|
|
250
|
+
.gitignore: major cleanup
|
|
251
|
+
|
|
252
|
+
- https://github.com/yaml/libyaml/pull/120
|
|
253
|
+
Fix doc.
|
|
254
|
+
|
|
255
|
+
0.1.7 2016-08-27
|
|
256
|
+
|
|
257
|
+
- Fixed segfault in yaml_string_write_handler.
|
|
258
|
+
|
|
259
|
+
- Fixed invalid simple key assertion.
|
|
260
|
+
|
|
261
|
+
- Fixed error handling in some examples (thank to Mathias Svensson).
|
|
262
|
+
|
|
263
|
+
- Removed obsolete VS project files.
|
|
264
|
+
|
|
265
|
+
0.1.6 2014-03-26
|
|
266
|
+
|
|
267
|
+
- https://github.com/yaml/libyaml/commit/d1003a9
|
|
268
|
+
Fixed heap overflow in yaml_parser_scan_uri_escapes (Thanks
|
|
269
|
+
Ivan Fratric of the Google Security Team).
|
|
270
|
+
|
|
271
|
+
- https://github.com/yaml/libyaml/commit/662f4be
|
|
272
|
+
Added tag 0.1.5 for changeset a5142b24428b
|
|
273
|
+
|
|
274
|
+
0.1.5 2014-02-03
|
|
275
|
+
|
|
276
|
+
- https://github.com/yaml/libyaml/commit/303b455
|
|
277
|
+
Manually define PTRDIFF_MAX for VS C compiler.
|
|
278
|
+
|
|
279
|
+
- https://github.com/yaml/libyaml/commit/1ef1171
|
|
280
|
+
Forgot to set the error state.
|
|
281
|
+
|
|
282
|
+
- https://github.com/yaml/libyaml/commit/c9479c7
|
|
283
|
+
Limit input size to SIZE_MAX/2.
|
|
284
|
+
|
|
285
|
+
- https://github.com/yaml/libyaml/commit/c201bf6
|
|
286
|
+
Guard against overflows in indent and flow_level.
|
|
287
|
+
|
|
288
|
+
- https://github.com/yaml/libyaml/commit/bb8ab82
|
|
289
|
+
Added .hgignore.
|
|
290
|
+
|
|
291
|
+
- https://github.com/yaml/libyaml/commit/2d94fc5
|
|
292
|
+
Prevent node index overflow (Reported by Florian Weimer).
|
|
293
|
+
|
|
294
|
+
- https://github.com/yaml/libyaml/commit/df33f25
|
|
295
|
+
Bumped the version number.
|
|
296
|
+
|
|
297
|
+
- https://github.com/yaml/libyaml/commit/f56726b
|
|
298
|
+
Fixed invalid size_t->int cast (Thank to Florian Weimer).
|
|
299
|
+
|
|
300
|
+
- https://github.com/yaml/libyaml/commit/01e8dad
|
|
301
|
+
Added a basic CMake project.
|
|
302
|
+
|
|
303
|
+
- https://github.com/yaml/libyaml/commit/f54fc40
|
|
304
|
+
Added tag 0.1.4 for changeset 3e6507fa0c26
|
|
305
|
+
|
|
306
|
+
0.1.4 2012-12-24
|
|
307
|
+
|
|
308
|
+
- Fixed a bug that prevented an empty mapping being used as a simple key
|
|
309
|
+
(thank to spitzak(at)rhythm(dot)com).
|
|
310
|
+
|
|
311
|
+
- Fixed pointer overflow when calculating the position of a potential
|
|
312
|
+
simple key (thank to ppelletier(at)oblong(dot)com).
|
|
313
|
+
|
|
314
|
+
- Fixed yaml.dll not exporting any symbols
|
|
315
|
+
(thank to pxn11432(at)nifty(dot)com).
|
|
316
|
+
|
|
317
|
+
- Added pkg-config support (thank to rainwoodman(at)gmail(dot)com).
|
|
318
|
+
|
|
319
|
+
0.1.3 2009-08-29
|
|
320
|
+
|
|
321
|
+
- This release fixes non-standard structure initialization and
|
|
322
|
+
a streaming-related issue.
|
|
323
|
+
|
|
324
|
+
0.1.2 2008-12-27
|
|
325
|
+
|
|
326
|
+
- Minor bugfix release
|
|
327
|
+
|
|
328
|
+
0.1.1 2006-08-01
|
|
329
|
+
|
|
330
|
+
- https://github.com/yaml/libyaml/commit/5e52c31
|
|
331
|
+
Fixed a problem when the DOCUMENT-END event is not emitted until
|
|
332
|
+
the beginning of the next document is available. Fixed #51.
|
|
333
|
+
Thanks edward(at)sweetbytes.net for the bug report.
|
|
334
|
+
|
|
335
|
+
- https://github.com/yaml/libyaml/commit/dd71484
|
|
336
|
+
Add project files for Visual Studio 2003.
|
|
337
|
+
|
|
338
|
+
- https://github.com/yaml/libyaml/commit/ce8a93e
|
|
339
|
+
Fix the example_deconstructor project.
|
|
340
|
+
|
|
341
|
+
- https://github.com/yaml/libyaml/commit/c9b74de
|
|
342
|
+
Eliminate some warnings and add more doxygen definitions.
|
|
343
|
+
|
|
344
|
+
- https://github.com/yaml/libyaml/commit/0122490
|
|
345
|
+
Undefine the NDEBUG directive for the test programs.
|
|
346
|
+
|
|
347
|
+
- https://github.com/yaml/libyaml/commit/071329a
|
|
348
|
+
Fix a bug in the emitter introduced while fixing warnings for VC6.
|
|
349
|
+
|
|
350
|
+
- https://github.com/yaml/libyaml/commit/6f6bbb8
|
|
351
|
+
Add VC6 projects for the test executables.
|
|
352
|
+
|
|
353
|
+
- https://github.com/yaml/libyaml/commit/0174ed6
|
|
354
|
+
Add win32 fixes and project files for VC6.
|
|
355
|
+
|
|
356
|
+
- https://github.com/yaml/libyaml/commit/e27a3c8
|
|
357
|
+
Add functions for constructing, parsing and emitting YAML documents.
|
|
358
|
+
|
|
359
|
+
- https://github.com/yaml/libyaml/commit/a907bf8
|
|
360
|
+
Add `const` qualifier for `yaml_parser_set_input_string` parameter `input`.
|
|
361
|
+
|
|
362
|
+
- https://github.com/yaml/libyaml/commit/c83b67a
|
|
363
|
+
Force a new line at the end of the input stream even if there
|
|
364
|
+
are no a new line character. This fixes a nasty bug when libyaml hangs on
|
|
365
|
+
documents like `[[[[`. Thanks ciaranm for reporting the bug.
|
|
366
|
+
|
|
367
|
+
- https://github.com/yaml/libyaml/commit/609cce0
|
|
368
|
+
Older versions of gcc do not know about -Wno-pointer-sign.
|
|
369
|
+
|
|
370
|
+
0.0.1 2006-08-01
|
|
371
|
+
|
|
372
|
+
- Initial release
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2017-2020 Ingy döt Net
|
|
2
|
+
Copyright (c) 2006-2016 Kirill Simonov
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
5
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
6
|
+
the Software without restriction, including without limitation the rights to
|
|
7
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
8
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
9
|
+
so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
20
|
+
SOFTWARE.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
## Run `./bootstrap` to generate the "Makefile.in" files in this directory and
|
|
2
|
+
## the "$SUBDIRS" subdirectories.
|
|
3
|
+
|
|
4
|
+
SUBDIRS = include src . tests
|
|
5
|
+
|
|
6
|
+
EXTRA_DIST = Changes ReadMe.md License CMakeLists.txt doc/doxygen.cfg
|
|
7
|
+
|
|
8
|
+
LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT := https://github.com/yaml/libyaml
|
|
9
|
+
LIBYAML_TEST_SUITE_RUN_REPO ?= $(LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT)
|
|
10
|
+
LIBYAML_TEST_SUITE_RUN_BRANCH ?= run-test-suite
|
|
11
|
+
|
|
12
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
13
|
+
pkgconfig_DATA = yaml-0.1.pc
|
|
14
|
+
|
|
15
|
+
maintainer-clean-local:
|
|
16
|
+
rm -f aclocal.m4 config.h.in configure config/*
|
|
17
|
+
-find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
|
|
18
|
+
|
|
19
|
+
distclean-local:
|
|
20
|
+
rm -fr tests/run-test-suite
|
|
21
|
+
-git worktree prune
|
|
22
|
+
|
|
23
|
+
.PHONY: bootstrap
|
|
24
|
+
bootstrap: maintainer-clean
|
|
25
|
+
./bootstrap
|
|
26
|
+
./configure
|
|
27
|
+
make
|
|
28
|
+
|
|
29
|
+
test: all
|
|
30
|
+
make -C tests check-TESTS
|
|
31
|
+
|
|
32
|
+
test-suite: tests/run-test-suite all
|
|
33
|
+
make -C $< test
|
|
34
|
+
|
|
35
|
+
test-all: test test-suite
|
|
36
|
+
|
|
37
|
+
tests/run-test-suite:
|
|
38
|
+
ifeq ($(LIBYAML_TEST_SUITE_RUN_REPO),$(LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT))
|
|
39
|
+
-git branch --track $(LIBYAML_TEST_SUITE_RUN_BRANCH) origin/$(LIBYAML_TEST_SUITE_RUN_BRANCH)
|
|
40
|
+
-git worktree prune
|
|
41
|
+
git worktree add $@ $(LIBYAML_TEST_SUITE_RUN_BRANCH)
|
|
42
|
+
else
|
|
43
|
+
git clone --branch $(LIBYAML_TEST_SUITE_RUN_BRANCH) $(LIBYAML_TEST_SUITE_RUN_REPO) $@
|
|
44
|
+
endif
|
|
45
|
+
|
|
46
|
+
docker-build:
|
|
47
|
+
make -C pkg/docker build
|
|
48
|
+
|
|
49
|
+
docker-dist:
|
|
50
|
+
make -C pkg/docker libyaml-dist
|
|
51
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
## LibYAML - A C library for parsing and emitting YAML.
|
|
2
|
+
|
|
3
|
+
To build and install the library, run:
|
|
4
|
+
|
|
5
|
+
$ ./configure
|
|
6
|
+
$ make
|
|
7
|
+
# make install
|
|
8
|
+
|
|
9
|
+
Required packages:
|
|
10
|
+
|
|
11
|
+
- gcc
|
|
12
|
+
- libtool
|
|
13
|
+
- make
|
|
14
|
+
|
|
15
|
+
If you checked the source code from the Git repository, run
|
|
16
|
+
|
|
17
|
+
$ ./bootstrap
|
|
18
|
+
$ ./configure
|
|
19
|
+
$ make
|
|
20
|
+
# make install
|
|
21
|
+
|
|
22
|
+
Required packages:
|
|
23
|
+
|
|
24
|
+
- autoconf
|
|
25
|
+
- libtool
|
|
26
|
+
- make
|
|
27
|
+
|
|
28
|
+
For more information, check the [LibYAML
|
|
29
|
+
homepage](https://github.com/yaml/libyaml).
|
|
30
|
+
|
|
31
|
+
Discuss LibYAML with the maintainers in IRC #libyaml irc.freenode.net.
|
|
32
|
+
|
|
33
|
+
You may also use the [YAML-Core mailing
|
|
34
|
+
list](http://lists.sourceforge.net/lists/listinfo/yaml-core).
|
|
35
|
+
|
|
36
|
+
Submit bug reports and feature requests to the [LibYAML bug
|
|
37
|
+
tracker](https://github.com/yaml/libyaml/issues/new).
|
|
38
|
+
|
|
39
|
+
This project was developed for Python Software Foundation as a part of Google
|
|
40
|
+
Summer of Code under the mentorship of Clark Evans.
|
|
41
|
+
|
|
42
|
+
The LibYAML module was written by Kirill Simonov <xi@resolvent.net>.
|
|
43
|
+
It is currently maintained by the YAML community.
|
|
44
|
+
|
|
45
|
+
LibYAML is released under the MIT license.
|
|
46
|
+
See the file LICENSE for more details.
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
From: Tina Müller <post@tinita.de>
|
|
2
|
+
To: yaml-core@lists.sourceforge.net
|
|
3
|
+
Subject: [ANN] LibYAML-0.2.5: A new release
|
|
4
|
+
|
|
5
|
+
=========================
|
|
6
|
+
Announcing LibYAML-0.2.5
|
|
7
|
+
=========================
|
|
8
|
+
|
|
9
|
+
A new release of LibYAML is now available:
|
|
10
|
+
https://github.com/yaml/libyaml/tree/0.2.5
|
|
11
|
+
|
|
12
|
+
The LibYAML project is now maintained by the YAML community. Planning happens
|
|
13
|
+
on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Changes
|
|
17
|
+
=======
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
https://github.com/yaml/libyaml/pull/187
|
|
21
|
+
Add -h and --flow (on|off|keep) to run-*-test-suite
|
|
22
|
+
|
|
23
|
+
https://github.com/yaml/libyaml/pull/182
|
|
24
|
+
Remove unnecessary include and malloc
|
|
25
|
+
|
|
26
|
+
https://github.com/yaml/libyaml/pull/177
|
|
27
|
+
Add specific files back to .gitignore
|
|
28
|
+
|
|
29
|
+
https://github.com/yaml/libyaml/pull/181
|
|
30
|
+
Output error position in run-parser-test-suite.c
|
|
31
|
+
|
|
32
|
+
https://github.com/yaml/libyaml/pull/105
|
|
33
|
+
Allow question marks in plain scalars in flow collections
|
|
34
|
+
|
|
35
|
+
https://github.com/yaml/libyaml/pull/186
|
|
36
|
+
Emitter: Don't output trailing space for empty scalar nodes
|
|
37
|
+
|
|
38
|
+
https://github.com/yaml/libyaml/pull/185
|
|
39
|
+
Emitter: Output space after an alias mapping key
|
|
40
|
+
|
|
41
|
+
https://github.com/yaml/libyaml/pull/191
|
|
42
|
+
A couple patches to improve test suite support
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Resources
|
|
46
|
+
=========
|
|
47
|
+
|
|
48
|
+
LibYAML IRC Channel: #libyaml on irc.freenode.net
|
|
49
|
+
LibYAML homepage: https://github.com/yaml/libyaml
|
|
50
|
+
Source download: https://github.com/yaml/libyaml/archive/dist-0.2.3.zip
|
|
51
|
+
GitHub repository: https://github.com/yaml/libyaml
|
|
52
|
+
Bug tracking: https://github.com/yaml/libyaml/issues
|
|
53
|
+
|
|
54
|
+
YAML homepage: http://yaml.org/
|
|
55
|
+
YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
About LibYAML
|
|
59
|
+
=============
|
|
60
|
+
|
|
61
|
+
YAML is a data serialization format designed for human readability and
|
|
62
|
+
interaction with scripting languages.
|
|
63
|
+
|
|
64
|
+
LibYAML is a C library for parsing and emitting YAML. LibYAML is the underlying
|
|
65
|
+
parser/emitter code for YAML frameworks in many programming languages.
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
Maintainers
|
|
69
|
+
===========
|
|
70
|
+
|
|
71
|
+
The following people are responsible for maintaining LibYAML:
|
|
72
|
+
|
|
73
|
+
* Ingy döt Net
|
|
74
|
+
|
|
75
|
+
and many thanks to all who have contribributed!
|
|
76
|
+
See: https://github.com/yaml/libyaml/pulls
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
Copyright
|
|
80
|
+
=========
|
|
81
|
+
|
|
82
|
+
Copyright (c) 2017-2020 Ingy döt Net <ingy@ingy.net>
|
|
83
|
+
Copyright (c) 2006-2016 Kirill Simonov <xi@resolvent.net>
|
|
84
|
+
|
|
85
|
+
The LibYAML module was written by Kirill Simonov.
|
|
86
|
+
It is currently maintained by the YAML community.
|
|
87
|
+
|
|
88
|
+
LibYAML is released under the MIT license.
|
|
89
|
+
See the file LICENSE for more details.
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Run `./bootstrap` to generate the "configure" script.
|
|
2
|
+
|
|
3
|
+
# Define the package version numbers and the bug reporting link.
|
|
4
|
+
m4_define([YAML_MAJOR], 0)
|
|
5
|
+
m4_define([YAML_MINOR], 2)
|
|
6
|
+
m4_define([YAML_PATCH], 5)
|
|
7
|
+
m4_define([YAML_BUGS], [https://github.com/yaml/libyaml/issues/new])
|
|
8
|
+
|
|
9
|
+
# Define the libtool version numbers; check the Autobook, Section 11.4.
|
|
10
|
+
# Bump the libtool version numbers using the following algorithm:
|
|
11
|
+
# if (the current interface has not been changed):
|
|
12
|
+
# YAML_REVISION += 1
|
|
13
|
+
# else:
|
|
14
|
+
# YAML_REVISION = 0
|
|
15
|
+
# YAML_CURRENT += 1
|
|
16
|
+
# if (this release is backward compatible with the previous release):
|
|
17
|
+
# YAML_AGE += 1
|
|
18
|
+
# else:
|
|
19
|
+
# YAML_AGE = 0
|
|
20
|
+
m4_define([YAML_RELEASE], 0)
|
|
21
|
+
m4_define([YAML_CURRENT], 2)
|
|
22
|
+
m4_define([YAML_REVISION], 9)
|
|
23
|
+
m4_define([YAML_AGE], 0)
|
|
24
|
+
|
|
25
|
+
# Initialize autoconf & automake.
|
|
26
|
+
AC_PREREQ(2.59)
|
|
27
|
+
AC_INIT([yaml], [YAML_MAJOR.YAML_MINOR.YAML_PATCH], [YAML_BUGS])
|
|
28
|
+
AC_CONFIG_AUX_DIR([config])
|
|
29
|
+
AC_CONFIG_HEADERS([include/config.h])
|
|
30
|
+
AM_INIT_AUTOMAKE([1.9 foreign])
|
|
31
|
+
|
|
32
|
+
# Define macro variables for the package version numbers.
|
|
33
|
+
AC_DEFINE(YAML_VERSION_MAJOR, YAML_MAJOR, [Define the major version number.])
|
|
34
|
+
AC_DEFINE(YAML_VERSION_MINOR, YAML_MINOR, [Define the minor version number.])
|
|
35
|
+
AC_DEFINE(YAML_VERSION_PATCH, YAML_PATCH, [Define the patch version number.])
|
|
36
|
+
AC_DEFINE(YAML_VERSION_STRING, "YAML_MAJOR.YAML_MINOR.YAML_PATCH", [Define the version string.])
|
|
37
|
+
|
|
38
|
+
# Define substitutions for the libtool version numbers.
|
|
39
|
+
YAML_LT_RELEASE=YAML_RELEASE
|
|
40
|
+
YAML_LT_CURRENT=YAML_CURRENT
|
|
41
|
+
YAML_LT_REVISION=YAML_REVISION
|
|
42
|
+
YAML_LT_AGE=YAML_AGE
|
|
43
|
+
AC_SUBST(YAML_LT_RELEASE)
|
|
44
|
+
AC_SUBST(YAML_LT_CURRENT)
|
|
45
|
+
AC_SUBST(YAML_LT_REVISION)
|
|
46
|
+
AC_SUBST(YAML_LT_AGE)
|
|
47
|
+
|
|
48
|
+
# Note: in order to update checks, run `autoscan` and look through "configure.scan".
|
|
49
|
+
|
|
50
|
+
# Checks for programs.
|
|
51
|
+
AC_PROG_CC
|
|
52
|
+
AC_PROG_CPP
|
|
53
|
+
AC_PROG_INSTALL
|
|
54
|
+
AC_PROG_LN_S
|
|
55
|
+
AC_PROG_MAKE_SET
|
|
56
|
+
AC_PROG_LIBTOOL
|
|
57
|
+
|
|
58
|
+
AC_CHECK_PROG(DOXYGEN, [doxygen], [true], [false])
|
|
59
|
+
AM_CONDITIONAL(DOXYGEN, [test "$DOXYGEN" = true])
|
|
60
|
+
|
|
61
|
+
# Checks for header files.
|
|
62
|
+
AC_HEADER_STDC
|
|
63
|
+
AC_CHECK_HEADERS([stdlib.h])
|
|
64
|
+
|
|
65
|
+
# Checks for typedefs, structures, and compiler characteristics.
|
|
66
|
+
AC_C_CONST
|
|
67
|
+
AC_TYPE_SIZE_T
|
|
68
|
+
|
|
69
|
+
# Define Makefiles.
|
|
70
|
+
AC_CONFIG_FILES([yaml-0.1.pc include/Makefile src/Makefile Makefile tests/Makefile])
|
|
71
|
+
|
|
72
|
+
# Generate the "configure" script.
|
|
73
|
+
AC_OUTPUT
|