Files
oam/knowledge base/ruby.md
2025-05-07 18:31:02 +02:00

1007 B

Ruby

TODO

Intro

  1. TL;DR
  2. Further readings
    1. Sources

TL;DR

Setup
apt install 'ruby'
brew install 'ruby'

SSL_CERT_FILE='path/to/ssl.cert'
Usage
# 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

Sources