You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This gem uses [YARD](https://yardoc.org/) for API documentation. All public classes and methods are documented with examples and detailed descriptions.
297
+
298
+
### Viewing the API Documentation
299
+
300
+
To generate and view the API documentation locally:
301
+
302
+
```console
303
+
bundle exec rake yard
304
+
```
305
+
306
+
This will generate HTML documentation in the `doc/` directory. Open `doc/index.html` in your browser to view it.
307
+
308
+
Alternatively, you can run a live documentation server with auto-reload:
309
+
310
+
```console
311
+
bundle exec rake yard:server
312
+
```
313
+
314
+
This starts a server at http://localhost:8808 that automatically reloads when you make changes to the code.
315
+
316
+
### Online Documentation
317
+
318
+
The API documentation is available online at [RubyDoc.info](https://www.rubydoc.info/gems/graphql-docs).
319
+
320
+
### Documentation Coverage
321
+
322
+
The codebase maintains 100% documentation coverage for all public APIs. You can check documentation statistics with:
323
+
324
+
```console
325
+
bundle exec yard stats
326
+
```
327
+
294
328
## Development
295
329
296
330
After checking out the repo, run `bin/setup` to install dependencies. Then, run
0 commit comments