Johannes Müller
Johannes Müller
* Use title case for headlines (automatically transformed to uppercase in manpage transform) * Uniformly use bold text for code highlights (backticks do not work) These improvements affect both the...
Apparently, the option is broken on Linux, Mac, and Windows. From https://github.com/crystal-ameba/ameba/issues/230#issuecomment-825877957 : * Ubuntu: ``` Run shards install --ignore-crystal-version --skip-postinstall shards install --ignore-crystal-version --skip-postinstall shell: /usr/bin/bash -e {0} Resolving...
The `--production` option is not very appropriately named because it's easy to assume it means running shards (especially `shards build` in "production mode"). Instead, its behaviour is only related to...
Currently, shards implementation accepts just any value for the version property defined in `shard.yml`. The [specification](https://github.com/crystal-lang/shards/blob/master/SPEC.md) is not very restrictive either, so you can technically write a lot of stuff...
This is a basic implementation of #86 It adds a new `shards info` command which can display information about a shard. For now, the features are very crude. The main...
#148 introduced `shards version` command which prints the version specified in `shard.yml`. The command accepts an optional parameter `path` which can be used to specifiy to look for `shard.yml` in...
I just stumbled upon #130 which was kind of resolved by adding a note to the README. Having a lock file is quite common with other dependency managers as well,...
I tried to update a project which had already been uploaded to the ftp server before manually. During the upload process dploy caught itself in an infinite loop. This is...
I noticed a few issues with the examples shown on this repo: 1. `each` and `each_with_index` are both reported to be > 50 times faster than `while`. Looking at the...
When making a Crystal release, we first tag a commit and publish a release on GitHub. The build pipeline only start after that has happend, and artifacts such as the...