Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gregawoods/advent-of-code-ruby-2023

Advent of Code 2023, Ruby
https://github.com/gregawoods/advent-of-code-ruby-2023

advent-of-code advent-of-code-2023 advent-of-code-ruby

Last synced: 8 days ago
JSON representation

Advent of Code 2023, Ruby

Awesome Lists containing this project

README

        

# Advent of Code

Ruby solutions to [Advent of Code](https://adventofcode.com/).

## 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
```