Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-21 | chore: renames `replModule` -> `replSource` and updates readme | Thibault Gagnaux | |
2021-12-21 | feat: adds `replSource` property and command-line option | Thibault Gagnaux | |
The `replSource` property specifies the frege source file that you want to load into the repl. It is excluded in the `fregeCompile` task so that we don't get two java class files (one from `compileFrege` and one from the fregeRepl `:l` command) that shadow each other on the classpath. As a result, we can make interactive changes to the `replSource` file and use the `:r` reload command to see them. | |||
2021-11-16 | feat: adds `compilerFlags` property to configure the Frege compiler | Thibault Gagnaux | |
2021-11-10 | refactor: tests and makes `FregeDTOBuilder` a singleton | Thibault Gagnaux | |
2021-11-09 | feat: adds two tests and makes them pass for new `runFregeTask` | Thibault Gagnaux | |
2021-07-08 | Refactor: Uses junit5 nested tests for a better structure | Thibault Gagnaux | |
Setups missing java 11 in the github workflow | |||
2021-07-07 | Splits tests into fast unit tests and slow functional tests | Thibault Gagnaux | |
2021-07-07 | Refactors tests | Thibault Gagnaux | |
- Uses the builder pattern to simplify the creation of `build.gradle` test files. - Adds `gradlew clean test` github workflow | |||
2021-07-02 | Adds `fregeCompile` task with some tests | Thibault Gagnaux | |
Upgrades gradle-wrapper to version `7.1`. | |||
2021-07-01 | Refactors `SetupFregeCompilerTask` tests | Thibault Gagnaux | |
2021-06-30 | Adds first `SetupFregeCompilerTaks` with some tests | Thibault Gagnaux | |
2021-06-29 | Switches from groovy's spock testing framework back to java | Thibault Gagnaux | |