-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uses Jekyll to generate the documentation.
- Uses Jekyll to generate the documentation, which's source and configs live in the `/jekyll` folder. - The documentation will still be built to the `/docs` folder and be ignored by git. - Currently, the documentation is one big page (similar to rust-analyzer's). - All the current feature demos and introduction are copied from the Code Navigation post on the Rails At Scale blog. We will gradually fill in the rest of the documentation. - To avoid duplication, most of README's content has been moved to the documentation too. - Because Jekyll server isn't able to link to assets outside of the source directory, we need to copy the Ruby LSP icon to `/jekyll` folder.
- Loading branch information
Showing
19 changed files
with
406 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,20 +16,16 @@ jobs: | |
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
working-directory: ./jekyll | ||
|
||
- name: Configure git | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
- name: Generate documentation | ||
run: bundle exec rake rdoc | ||
|
||
- name: Copy README images to the docs folder | ||
run: | | ||
mkdir docs/vscode | ||
cp vscode/icon.png docs/vscode/icon.png | ||
cp -R vscode/extras docs/vscode/ | ||
working-directory: ./jekyll | ||
run: bundle exec jekyll build | ||
|
||
- name: Commit to gh-pages | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.