# Ruby
> TODO
Intro
1. [TL;DR](#tldr)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL;DR
Setup
```sh
apt install 'ruby'
brew install 'ruby'
SSL_CERT_FILE='path/to/ssl.cert'
```
Usage
```sh
# Check file syntax.
# Does *not* run the code.
ruby -c '/etc/gitlab/gitlab.rb'
# Create ruby gems from code.
gem build
# Unpack gems into code.
gem unpack 'logstash-filter-custom-0.1.2.gem'
```
## Further readings
- [Website]
### Sources
- [Documentation]
[documentation]: https://docs.ruby-lang.org/en/master/
[website]: https://www.ruby-lang.org/en/