docr

Version, currently 0.1.24 versions

github.com/devnote-dev/docr

A CLI tool for searching Crystal documentation

18 stars
0 dependents
License: MPL

Installation

# Add this to your shard.yml
dependencies:
  docr:
    github: devnote-dev/docr
    version: ~> 0.1.2

Then run:

shards install

shard.yml

Crystal
1.8.0
License
MPL
Author
Devonte W <https://github.com/devnote-dev>
Target
  • docr from src/cli.cr

Dependencies

Runtime Dependencies

  • cling*github: devnote-dev/cling, branch: main
  • crest*github: mamantoha/crest

Development Dependencies

  • ameba~> 1.4.0github: crystal-ameba/amebadev

README

# Docr

`docr` is a tool for searching Crystal API and shards documentation from the command line.

![demo_1](/assets/demo_1.png)

## Installation

See the [releases page](https://github.com/devnote-dev/docr/releases/latest) for available binaries.

### From Source

Go 1.19 or above is required to build Docr.

```sh
git clone https://github.com/devnote-dev/docr
cd docr
go get

scripts/build.cmd # for windows
scripts/build.sh # for linux/darwin
```

## Usage

By default, Docr comes with no libraries, but you can easily import the standard library documentation using `docr update`. This command will search for the `crystal` executable on your system and import that version of the API documentation. If the executable isn't found, it defaults to the latest available Crystal release. If you want to import the standard library directly or a specific version, you can do so with the `docr add crystal <version>` command (also accepts "latest" as a version).

![demo_2](/assets/demo_2.png)

You can also import third-party libraries (or shards) using the `docr add` command:

![demo_3](/assets/demo_3.png)

After importing the libraries you want, you can simply lookup or search whatever you want! Use the `docr search` command to search for all types and symbols matching the query, and the `docr info` command to get direct information about a specified type or symbol:

![demo_4](/assets/demo_4.png)

Both the `info` and `search` commands support Crystal path syntax for queries, meaning the following commands are valid:

* `docr info JSON::Any.as_s`
* `docr info JSON::Any#as_s`
* `docr info JSON::Any as_s`

However, the following commands _are not_ valid:

* `docr info JSON Any as_s`
* `docr info JSON Any.as_s`
* `docr info JSON Any#as_s`

This is because the first argument is parsed as the base type or namespace to look in, and the second argument is parsed as the symbol to look for. In the first example, `JSON::Any` is the namespace and `as_s` the symbol, whereas in the second example, `JSON` is the namespace and `Any as_s` is the symbol, which is invalid. This doesn't mean you have to specify the namespace of a symbol, Docr can determine whether an argument is a type/namespace or symbol and handle it accordingly.

<!-- TODO: add "Updating" section with update command -->

## Contributing

1. Fork it (https://github.com/devnote-dev/docr/fork)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## Contributors

* [Devonte W](https://github.com/devnote-dev) - creator and maintainer

This repository is managed under the Mozilla Public License v2.

© 2023 devnote-dev