Skip to content
Merged

Dev #230

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cccf70f
Update gemspec
cfis Apr 7, 2026
d8212aa
Fix InputCallbacks GC crash
cfis Apr 7, 2026
940d1b9
Remove dead code.
cfis Apr 8, 2026
ba9ac99
Remove duplicate include.
cfis Apr 8, 2026
cb088a4
Fix mispelled methods and add tests.
cfis Apr 8, 2026
8ce436c
Remove deprecated methods.
cfis Apr 8, 2026
8a8527e
Test cleanup
cfis Apr 8, 2026
6e6e602
Update msvc project.
cfis Apr 8, 2026
3e95cfa
Fix C14N document subset canonicalization with namespace nodes
cfis Apr 8, 2026
0b4f2d4
Fix test_compression: actually set negative values before asserting
cfis Apr 8, 2026
ff49ee3
Allow nil for external and system IDs when creating a DTD
cfis Apr 8, 2026
9a634e2
Revert "Switch to require_relative for loading library."
cfis Apr 8, 2026
75b127b
Remove deprecated require shims and fix require_relative issue
cfis Apr 8, 2026
a729393
Add rdoc call-seq comments to Schema and Error classes
cfis Apr 8, 2026
6aee5e0
Fix README: --with-xml2-dir should be --with-xml2-config
cfis Apr 8, 2026
1265cfb
Update changelog.
cfis Apr 8, 2026
20b8238
Clean up stale references and unnecessary compatibility code
cfis Apr 8, 2026
204ff41
Remove obsolete benchmark scripts
cfis Apr 8, 2026
58af0d9
Remove obsolete pre-git changelog files
cfis Apr 8, 2026
41af70a
Standardize CHANGELOG formatting and fix spelling mistakes
cfis Apr 8, 2026
61eee07
Fix gemspec: correct VC project glob and exclude generated extconf.h
cfis Apr 8, 2026
69b9833
Fix README: remove invalid argument from bundle install command
cfis Apr 8, 2026
96f13fe
Add CHANGELOG.md to docs workflow path triggers
cfis Apr 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- 'docs/**'
- 'lib/**'
- 'ext/**'
- 'CHANGELOG.md'
- 'zensical.toml'
- '.github/workflows/docs.yml'
workflow_dispatch:
Expand Down Expand Up @@ -47,7 +48,7 @@ jobs:
run: zensical build --clean

- name: Build API reference
run: rdoc --format aliki --output site/reference --title 'LibXML Ruby API' --line-numbers --charset=utf-8 --exclude lib/xml.rb --exclude lib/xml/libxml.rb --main README.md ext/**/libxml.c ext/**/ruby_xml.c ext/**/*.c lib/**/*.rb README.md
run: rdoc --format aliki --output site/reference --title 'LibXML Ruby API' --line-numbers --charset=utf-8 --main README.md ext/**/libxml.c ext/**/ruby_xml.c ext/**/*.c lib/**/*.rb README.md

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
Loading
Loading