From db66851cd551140b381b0c5e00b19f8556376e86 Mon Sep 17 00:00:00 2001 From: Chris Grayson Date: Sat, 15 Oct 2016 18:33:26 -0500 Subject: [PATCH] replace 'problems' key with 'exercises' in config.json - see #15 --- config.json | 64 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 52 insertions(+), 12 deletions(-) diff --git a/config.json b/config.json index 5b41b3f..5587705 100644 --- a/config.json +++ b/config.json @@ -4,18 +4,6 @@ "repository": "https://github.com/exercism/xplsql", "active": true, "test_pattern": "ut.*plsql", - "problems": [ - "hamming", - "gigasecond", - "rna-transcription", - "raindrops", - "difference-of-squares", - "roman-numerals", - "nth-prime", - "leap", - "grains", - "binary" - ], "deprecated": [ ], @@ -25,5 +13,57 @@ ], "foregone": [ + ], + "exercises": [ + { + "difficulty": 1, + "slug": "hamming", + "topics": [] + }, + { + "difficulty": 1, + "slug": "gigasecond", + "topics": [] + }, + { + "difficulty": 1, + "slug": "rna-transcription", + "topics": [] + }, + { + "difficulty": 1, + "slug": "raindrops", + "topics": [] + }, + { + "difficulty": 1, + "slug": "difference-of-squares", + "topics": [] + }, + { + "difficulty": 1, + "slug": "roman-numerals", + "topics": [] + }, + { + "difficulty": 1, + "slug": "nth-prime", + "topics": [] + }, + { + "difficulty": 1, + "slug": "leap", + "topics": [] + }, + { + "difficulty": 1, + "slug": "grains", + "topics": [] + }, + { + "difficulty": 1, + "slug": "binary", + "topics": [] + } ] }