Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robolectric/robolectric.github.io
Source for the documentation at robolectric.org
https://github.com/robolectric/robolectric.github.io
Last synced: 26 days ago
JSON representation
Source for the documentation at robolectric.org
- Host: GitHub
- URL: https://github.com/robolectric/robolectric.github.io
- Owner: robolectric
- License: mit
- Created: 2014-02-13T21:19:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-05-23T00:48:19.000Z (8 months ago)
- Last Synced: 2024-05-23T01:43:50.281Z (8 months ago)
- Language: HTML
- Homepage: http://robolectric.org
- Size: 48.3 MB
- Stars: 22
- Watchers: 14
- Forks: 45
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Robolectric
This repository contains the source of the documentation that lives at
[robolectric.org](https://robolectric.org).## Contributing
Make sure that you are on the `master` branch, and that it is up to date before making any changes.
This is the default branch, so Git should put you there automatically.### Build the documentation locally
Before submitting a Pull Request, run the documentation locally to check that the content and layout
are correct. The documentation is built using [MkDocs](https://www.mkdocs.org/).To do so, make sure that you have [Python 3+ installed](https://www.python.org/downloads/), and then
install the required dependencies by running:```bash
pip install -r requirements.txt
```Then you can execute the following command to access the documentation locally at
[http://127.0.0.1:8000/](http://127.0.0.1:8000/):```bash
mkdocs serve --open
```### Using code snippets
The code snippets displayed throughout the website are stored in the [`snippets`](snippets) Android
project.To use a new code snippet, follow these steps:
1. Define your code snippet in the `snippets/java` module.
2. Surround it with```java
// --8<-- [start:my_code_snippet_identifier]
my code snippet
// --8<-- [end:my_code_snippet_identifier]
```3. To use it in your Markdown file, use the following syntax:
````markdown
```java
--8<-- "snippets/java/path/to/my/snippet/MyCodeSnippet.java:my_code_snippet_identifier"
```
````> [!NOTE]
>
> The migration of the code snippets to the `snippets` project is a work in progress.
> New code snippets **should** be added in the `snippets` project.### Validate your Markdown files
If you modified any Markdown file, we recommend using
[`DavidAnson/markdownlint-cli2`](https://github.com/DavidAnson/markdownlint-cli2) to ensure that the
formatting rules are respected.Once installed, you can run the command below to perform the check. Add the `--fix` option to fix
issues that can be addressed automatically. The non-resolved issues will be printed in the console.```bash
markdownlint-cli2 "README.md" "docs/**/*.md" "#docs/javadoc/**/*.md" --config .markdownlint.jsonc
```Once your Pull Request is merged, the documentation will be automatically built and deployed by
GitHub Actions.## Javadocs
When a new version of Robolectric is released, the [`docs/javadoc`](docs/javadoc) directory needs to
be updated. This can be achieved either automatically, or manually.### Automatic publication
The simplest way to publish the javadoc for a specific version is to
[create an issue](https://github.com/robolectric/robolectric.github.io/issues/new) whose title is
`Publish javadoc for `, where `` is the version you want to deploy (for example
`4.12`).This will trigger the [`publish-javadoc.yml` workflow](.github/workflows/publish-javadoc.yml) to build and publish the corresponding
javadoc.> [!TIP]
> If you use the [`gh`](https://cli.github.com/) command line tool, you can use the following command:
>
> `gh issue create --title "Publish javadoc for " --body ""`### Manual publication
To manually publish the javadoc, you can follow the guide in
[Robolectric Wiki's release part](https://github.com/robolectric/robolectric/wiki/Performing-a-Release#update-docs).## Deploy process
When a new PR is merged, GitHub Actions will build and push site code to `gh-pages` branch. The
repository has configured to deploy the site with `gh-phages` branch, and then GitHub Pages will
deploy the site public automatically.