Skip to content

Ruby

Overview

Ruby is an open-source programming langauge with easy to write, elegant syntax. It focuses on simplicity and productivity.

Availability

Cluster Module/Version
BOSE ruby/2.7.1
BGSC ruby/2.7.1

Note: You can simply use "module load ruby" to activate the most recently installed version of this software.

Sample Slurm Script

submit.sh
#!/bin/bash
# -- SLURM SETTINGS -- #
# [..] other settings here [..]

# The following settings are for the overall request to Slurm
#SBATCH --ntasks-per-node=32     # How many CPU cores do you want to request
#SBATCH --nodes=1                # How many nodes do you want to request

# -- SCRIPT COMMANDS -- #

# Load the needed modules
module load ruby  # Load Ruby
ruby myfile.rb # Run ruby file

Real Example

Has your research group used Ruby in a project? Contact the HPC Team and we'd be glad to feature your work.

Resources