From 09ea7fda63eac9e0f4ca7904b3b04b83864c0816 Mon Sep 17 00:00:00 2001 From: Bruce Axtens Date: Tue, 14 Nov 2023 15:43:18 +0800 Subject: [PATCH] meta fixes --- exercises/practice/acronym/.meta/config.json | 42 +++++++++---------- .../circular-buffer/.meta/config.json | 42 +++++++++---------- .../complex-numbers/.meta/config.json | 42 +++++++++---------- .../practice/hello-world/.meta/config.json | 2 +- .../matching-brackets/.meta/config.json | 41 +++++++++--------- .../pascals-triangle/.meta/config.json | 42 +++++++++---------- 6 files changed, 105 insertions(+), 106 deletions(-) diff --git a/exercises/practice/acronym/.meta/config.json b/exercises/practice/acronym/.meta/config.json index a56113d8..71ceb15f 100644 --- a/exercises/practice/acronym/.meta/config.json +++ b/exercises/practice/acronym/.meta/config.json @@ -1,23 +1,23 @@ { - "authors": [ - "kapitaali" + "authors": [ + "kapitaali" + ], + "files": { + "solution": [ + "src/acronym.cob" ], - "files": { - "solution": [ - "src/acronym.cob" - ], - "test": [ - "tst/acronym/acronym.cut" - ], - "example": [ - ".meta/proof.ci.cob" - ], - "invalidator": [ - "test.sh", - "test.ps1" - ] - }, - "blurb": "Convert a phrase to its acronym.", - "source": "Julien Vanier", - "source_url": "https://github.com/monkbroc" -} \ No newline at end of file + "test": [ + "tst/acronym/acronym.cut" + ], + "example": [ + ".meta/proof.ci.cob" + ], + "invalidator": [ + "test.sh", + "test.ps1" + ] + }, + "blurb": "Convert a long phrase to its acronym.", + "source": "Julien Vanier", + "source_url": "https://github.com/monkbroc" +} diff --git a/exercises/practice/circular-buffer/.meta/config.json b/exercises/practice/circular-buffer/.meta/config.json index d4eee6b2..a24c2a9c 100644 --- a/exercises/practice/circular-buffer/.meta/config.json +++ b/exercises/practice/circular-buffer/.meta/config.json @@ -1,23 +1,23 @@ { - "authors": [ - "kapitaali" + "authors": [ + "kapitaali" + ], + "files": { + "solution": [ + "src/circular-buffer.cob" ], - "files": { - "solution": [ - "src/circular-buffer.cob" - ], - "test": [ - "tst/circular-buffer/circular-buffer.cut" - ], - "example": [ - ".meta/proof.ci.cob" - ], - "invalidator": [ - "test.sh", - "test.ps1" - ] - }, - "blurb": "A circular buffer, cyclic buffer or ring buffer is a data structure that uses a single, fixed-size buffer as if it were connected end-to-end.", - "source": "Wikipedia", - "source_url": "https://en.wikipedia.org/wiki/Circular_buffer" -} \ No newline at end of file + "test": [ + "tst/circular-buffer/circular-buffer.cut" + ], + "example": [ + ".meta/proof.ci.cob" + ], + "invalidator": [ + "test.sh", + "test.ps1" + ] + }, + "blurb": "A data structure that uses a single, fixed-size buffer as if it were connected end-to-end.", + "source": "Wikipedia", + "source_url": "https://en.wikipedia.org/wiki/Circular_buffer" +} diff --git a/exercises/practice/complex-numbers/.meta/config.json b/exercises/practice/complex-numbers/.meta/config.json index ed802ff3..fc4adecb 100644 --- a/exercises/practice/complex-numbers/.meta/config.json +++ b/exercises/practice/complex-numbers/.meta/config.json @@ -1,23 +1,23 @@ { - "authors": [ - "kapitaali" + "authors": [ + "kapitaali" + ], + "files": { + "solution": [ + "src/complex-numbers.cob" ], - "files": { - "solution": [ - "src/complex-numbers.cob" - ], - "test": [ - "tst/complex-numbers/complex-numbers.cut" - ], - "example": [ - ".meta/proof.ci.cob" - ], - "invalidator": [ - "test.sh", - "test.ps1" - ] - }, - "blurb": "A complex number is a number in the form a + b * i where a and b are real and i satisfies i^2 = -1.", - "source": "Wikipedia", - "source_url": "https://en.wikipedia.org/wiki/Complex_number" -} \ No newline at end of file + "test": [ + "tst/complex-numbers/complex-numbers.cut" + ], + "example": [ + ".meta/proof.ci.cob" + ], + "invalidator": [ + "test.sh", + "test.ps1" + ] + }, + "blurb": "Implement complex numbers.", + "source": "Wikipedia", + "source_url": "https://en.wikipedia.org/wiki/Complex_number" +} diff --git a/exercises/practice/hello-world/.meta/config.json b/exercises/practice/hello-world/.meta/config.json index bab5f4ab..2324f5cb 100644 --- a/exercises/practice/hello-world/.meta/config.json +++ b/exercises/practice/hello-world/.meta/config.json @@ -18,7 +18,7 @@ "test.ps1" ] }, - "blurb": "The classical introductory exercise. Just say \"Hello, World!\".", + "blurb": "Exercism's classic introductory exercise. Just say \"Hello, World!\".", "source": "This is an exercise to introduce users to using Exercism", "source_url": "https://en.wikipedia.org/wiki/%22Hello,_world!%22_program" } diff --git a/exercises/practice/matching-brackets/.meta/config.json b/exercises/practice/matching-brackets/.meta/config.json index 3752d87b..e7a22672 100644 --- a/exercises/practice/matching-brackets/.meta/config.json +++ b/exercises/practice/matching-brackets/.meta/config.json @@ -1,23 +1,22 @@ { - "authors": [ - "kapitaali" + "authors": [ + "kapitaali" + ], + "files": { + "solution": [ + "src/matching-brackets.cob" ], - "files": { - "solution": [ - "src/matching-brackets.cob" - ], - "test": [ - "tst/matching-brackets/matching-brackets.cut" - ], - "example": [ - ".meta/proof.ci.cob" - ], - "invalidator": [ - "test.sh", - "test.ps1" - ] - }, - "blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.", - "source": "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial.", - "source_url": "http://pine.fm/LearnToProgram/?Chapter=06" -} \ No newline at end of file + "test": [ + "tst/matching-brackets/matching-brackets.cut" + ], + "example": [ + ".meta/proof.ci.cob" + ], + "invalidator": [ + "test.sh", + "test.ps1" + ] + }, + "blurb": "Make sure the brackets and braces all match.", + "source": "Ginna Baker" +} diff --git a/exercises/practice/pascals-triangle/.meta/config.json b/exercises/practice/pascals-triangle/.meta/config.json index f3083262..675be6f8 100644 --- a/exercises/practice/pascals-triangle/.meta/config.json +++ b/exercises/practice/pascals-triangle/.meta/config.json @@ -1,23 +1,23 @@ { - "authors": [ - "kapitaali" + "authors": [ + "kapitaali" + ], + "files": { + "solution": [ + "src/pascals-triangle.cob" ], - "files": { - "solution": [ - "src/pascals-triangle.cob" - ], - "test": [ - "tst/pascals-triangle/pascals-triangle.cut" - ], - "example": [ - ".meta/proof.ci.cob" - ], - "invalidator": [ - "test.sh", - "test.ps1" - ] - }, - "blurb": "Compute Pascal's triangle up to a given number of rows.", - "source": "Pascal's Triangle at Wolfram Math World", - "source_url": "http://mathworld.wolfram.com/PascalsTriangle.html" -} \ No newline at end of file + "test": [ + "tst/pascals-triangle/pascals-triangle.cut" + ], + "example": [ + ".meta/proof.ci.cob" + ], + "invalidator": [ + "test.sh", + "test.ps1" + ] + }, + "blurb": "Compute Pascal's triangle up to a given number of rows.", + "source": "Pascal's Triangle at Wolfram Math World", + "source_url": "https://www.wolframalpha.com/input/?i=Pascal%27s+triangle" +}