We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2b5b7 commit 558e7b9Copy full SHA for 558e7b9
.gitignore
@@ -7,4 +7,6 @@ dist
7
wapm_packages
8
9
.cache
10
-compile_commands.json
+compile_commands.json
11
+
12
+html
tasks/doc.rake
@@ -0,0 +1,8 @@
1
+require 'rdoc/task'
2
+require 'ruby_wasm/version'
3
4
+RDoc::Task.new do |doc|
5
+ doc.main = 'README.md'
6
+ doc.title = "ruby.wasm #{RubyWasm::VERSION} Documentation"
+ doc.rdoc_files = FileList.new %w[lib/**/*.rb ext/**/*.c ext/**/*.rb]
+end
0 commit comments