Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gregawoods/advent-of-code-ruby-2023
- Owner: gregawoods
- Created: 2023-12-01T14:19:02.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T14:14:24.000Z (about 1 year ago)
- Last Synced: 2023-12-20T14:03:34.826Z (about 1 year ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-ruby
- Language: Ruby
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```