gitextract_kxlx5hx4/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin/ │ └── sdoc ├── config.ru ├── lib/ │ ├── rdoc/ │ │ ├── discover.rb │ │ └── generator/ │ │ └── template/ │ │ └── rails/ │ │ ├── _context.rhtml │ │ ├── _file_nav.rhtml │ │ ├── _head.rhtml │ │ ├── _index_nav.rhtml │ │ ├── _module_nav.rhtml │ │ ├── _panel.rhtml │ │ ├── class.rhtml │ │ ├── file.rhtml │ │ ├── index.rhtml │ │ └── resources/ │ │ ├── css/ │ │ │ ├── highlight.css │ │ │ └── main.css │ │ └── js/ │ │ ├── .gitattributes │ │ ├── @hotwired--turbo.js │ │ ├── main.js │ │ └── search.js │ ├── sdoc/ │ │ ├── generator.rb │ │ ├── helpers/ │ │ │ └── git.rb │ │ ├── helpers.rb │ │ ├── name_list.rb │ │ ├── postprocessor.rb │ │ ├── rdoc_monkey_patches.rb │ │ ├── renderer.rb │ │ ├── search_index.rb │ │ └── version.rb │ └── sdoc.rb ├── netlify.toml ├── sdoc.gemspec └── spec/ ├── helpers_spec.rb ├── postprocessor_spec.rb ├── rdoc_generator_spec.rb ├── rdoc_monkey_patches_spec.rb ├── renderer_spec.rb ├── search_index_spec.rb └── spec_helper.rb