mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
35 lines
454 B
Markdown
35 lines
454 B
Markdown
# Gilded Rose
|
|
|
|
This is the Gilded Rose kata in Clojure.
|
|
|
|
## Getting started
|
|
|
|
You'll need the [clojure command-line tool](https://clojure.org/guides/install_clojure).
|
|
|
|
## Running app
|
|
|
|
Produces output suitable for texttests:
|
|
|
|
```sh
|
|
clojure -M:main
|
|
```
|
|
|
|
You can specify the number of days as args:
|
|
```sh
|
|
clojure -M:main 31
|
|
```
|
|
|
|
## Running tests
|
|
|
|
To run all tests
|
|
|
|
```sh
|
|
clojure -M:test
|
|
```
|
|
|
|
To run all tests in watch mode
|
|
|
|
```sh
|
|
clojure -M:test --watch
|
|
```
|