Skip to content

gregawoods/advent-of-code-ruby-2023

Repository files navigation

Advent of Code

Ruby solutions to Advent of Code.

Requirements

Install ruby 3.2.2, bundler, and the gems.

bundle install

Use

# solve all
rake solve:all

# solve a specific day
rake solve:7

# run all tests
rake test

# run a specific test
ruby ./test/07_test.rb

# scaffold a day
rake scaffold:1

# download test input
rake download:1