From 6127300404a9a7fcfc7b404fc26b173f98da9109 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Fri, 2 Apr 2021 14:38:33 +0200 Subject: [PATCH] Add a `.meta/config.json` file for all concepts found in the track's `config.json` file containing: - A `blurb` key, which value is copied from the `config.json` file and removed from the `config.json` file - An `authors` key, the value of which is an empty array - A `contributors` key, the value of which is an empty array --- concepts/arrays/.meta/config.json | 7 ++++ concepts/basics/.meta/config.json | 8 ++++ concepts/blocks/.meta/config.json | 7 ++++ concepts/booleans/.meta/config.json | 11 ++++++ concepts/classes/.meta/config.json | 5 +++ concepts/conditionals/.meta/config.json | 10 +++++ .../floating-point-numbers/.meta/config.json | 9 +++++ concepts/instance-variables/.meta/config.json | 10 +++++ concepts/loops/.meta/config.json | 9 +++++ concepts/nil/.meta/config.json | 10 +++++ concepts/numbers/.meta/config.json | 10 +++++ concepts/ostruct/.meta/config.json | 7 ++++ concepts/strings/.meta/config.json | 7 ++++ config.json | 39 +++++++------------ 14 files changed, 123 insertions(+), 26 deletions(-) create mode 100644 concepts/arrays/.meta/config.json create mode 100644 concepts/basics/.meta/config.json create mode 100644 concepts/blocks/.meta/config.json create mode 100644 concepts/booleans/.meta/config.json create mode 100644 concepts/classes/.meta/config.json create mode 100644 concepts/conditionals/.meta/config.json create mode 100644 concepts/floating-point-numbers/.meta/config.json create mode 100644 concepts/instance-variables/.meta/config.json create mode 100644 concepts/loops/.meta/config.json create mode 100644 concepts/nil/.meta/config.json create mode 100644 concepts/numbers/.meta/config.json create mode 100644 concepts/ostruct/.meta/config.json create mode 100644 concepts/strings/.meta/config.json diff --git a/concepts/arrays/.meta/config.json b/concepts/arrays/.meta/config.json new file mode 100644 index 0000000000..49f524e8c5 --- /dev/null +++ b/concepts/arrays/.meta/config.json @@ -0,0 +1,7 @@ +{ + "blurb": "TODO: add blurb for arrays concept", + "authors": [ + "pvcarrera" + ], + "contributors": [] +} diff --git a/concepts/basics/.meta/config.json b/concepts/basics/.meta/config.json new file mode 100644 index 0000000000..ac9f2d2872 --- /dev/null +++ b/concepts/basics/.meta/config.json @@ -0,0 +1,8 @@ +{ + "blurb": "TODO: add blurb for basics concept", + "authors": [ + "iHiD", + "pvcarrera" + ], + "contributors": [] +} diff --git a/concepts/blocks/.meta/config.json b/concepts/blocks/.meta/config.json new file mode 100644 index 0000000000..9275b49be0 --- /dev/null +++ b/concepts/blocks/.meta/config.json @@ -0,0 +1,7 @@ +{ + "blurb": "TODO: add blurb for blocks concept", + "authors": [ + "iHiD" + ], + "contributors": [] +} diff --git a/concepts/booleans/.meta/config.json b/concepts/booleans/.meta/config.json new file mode 100644 index 0000000000..0335adff58 --- /dev/null +++ b/concepts/booleans/.meta/config.json @@ -0,0 +1,11 @@ +{ + "blurb": "TODO: add blurb for booleans concept", + "authors": [ + "neenjaw" + ], + "contributors": [ + "kotp", + "iHiD", + "kayn1" + ] +} diff --git a/concepts/classes/.meta/config.json b/concepts/classes/.meta/config.json new file mode 100644 index 0000000000..70666b5f6f --- /dev/null +++ b/concepts/classes/.meta/config.json @@ -0,0 +1,5 @@ +{ + "blurb": "TODO: add blurb for classes concept", + "authors": [], + "contributors": [] +} diff --git a/concepts/conditionals/.meta/config.json b/concepts/conditionals/.meta/config.json new file mode 100644 index 0000000000..d548e6076f --- /dev/null +++ b/concepts/conditionals/.meta/config.json @@ -0,0 +1,10 @@ +{ + "blurb": "TODO: add blurb for conditionals concept", + "authors": [ + "dvik1950" + ], + "contributors": [ + "kotp", + "iHiD" + ] +} diff --git a/concepts/floating-point-numbers/.meta/config.json b/concepts/floating-point-numbers/.meta/config.json new file mode 100644 index 0000000000..f7694cd22d --- /dev/null +++ b/concepts/floating-point-numbers/.meta/config.json @@ -0,0 +1,9 @@ +{ + "blurb": "TODO: add blurb for floating-point-numbers concept", + "authors": [ + "TBD" + ], + "contributors": [ + "dvik1950" + ] +} diff --git a/concepts/instance-variables/.meta/config.json b/concepts/instance-variables/.meta/config.json new file mode 100644 index 0000000000..2b42088c05 --- /dev/null +++ b/concepts/instance-variables/.meta/config.json @@ -0,0 +1,10 @@ +{ + "blurb": "TODO: add blurb for instance-variables concept", + "authors": [ + "neenjaw", + "iHiD" + ], + "contributors": [ + "kotp" + ] +} diff --git a/concepts/loops/.meta/config.json b/concepts/loops/.meta/config.json new file mode 100644 index 0000000000..c14b8c6e57 --- /dev/null +++ b/concepts/loops/.meta/config.json @@ -0,0 +1,9 @@ +{ + "blurb": "TODO: add blurb for loops concept", + "authors": [ + "TBD" + ], + "contributors": [ + "dvik1950" + ] +} diff --git a/concepts/nil/.meta/config.json b/concepts/nil/.meta/config.json new file mode 100644 index 0000000000..f63cff9f64 --- /dev/null +++ b/concepts/nil/.meta/config.json @@ -0,0 +1,10 @@ +{ + "blurb": "TODO: add blurb for nil concept", + "authors": [ + "neenjaw", + "iHiD" + ], + "contributors": [ + "kotp" + ] +} diff --git a/concepts/numbers/.meta/config.json b/concepts/numbers/.meta/config.json new file mode 100644 index 0000000000..24198de51f --- /dev/null +++ b/concepts/numbers/.meta/config.json @@ -0,0 +1,10 @@ +{ + "blurb": "TODO: add blurb for numbers concept", + "authors": [ + "dvik1950" + ], + "contributors": [ + "kotp", + "iHiD" + ] +} diff --git a/concepts/ostruct/.meta/config.json b/concepts/ostruct/.meta/config.json new file mode 100644 index 0000000000..c6cc0aa2f8 --- /dev/null +++ b/concepts/ostruct/.meta/config.json @@ -0,0 +1,7 @@ +{ + "blurb": "TODO: add blurb for ostruct concept", + "authors": [ + "iHiD" + ], + "contributors": [] +} diff --git a/concepts/strings/.meta/config.json b/concepts/strings/.meta/config.json new file mode 100644 index 0000000000..359c1a10c0 --- /dev/null +++ b/concepts/strings/.meta/config.json @@ -0,0 +1,7 @@ +{ + "blurb": "TODO: add blurb for strings concept", + "authors": [ + "pvcarrera" + ], + "contributors": [] +} diff --git a/config.json b/config.json index d1724cd245..ca3682c4c1 100644 --- a/config.json +++ b/config.json @@ -1502,80 +1502,67 @@ { "uuid": "fa482f4a-19d6-4d13-ad9e-5121c536dc76", "slug": "ostruct", - "name": "Ostruct", - "blurb": "TODO: add blurb for ostruct concept" + "name": "Ostruct" }, { "uuid": "7f2bf3a7-9771-48e8-bb6a-3022ca073a41", "slug": "arrays", - "name": "Arrays", - "blurb": "TODO: add blurb for arrays concept" + "name": "Arrays" }, { "uuid": "fe345fe6-229b-4b4b-a489-4ed3b77a1d7e", "slug": "basics", - "name": "Basics", - "blurb": "TODO: add blurb for basics concept" + "name": "Basics" }, { "uuid": "bf57350d-9e18-4ec6-9341-e4d2c289724d", "slug": "blocks", - "name": "Blocks", - "blurb": "TODO: add blurb for blocks concept" + "name": "Blocks" }, { "uuid": "831b4db4-6b75-4a8d-a835-4c2555aacb61", "slug": "booleans", - "name": "Booleans", - "blurb": "TODO: add blurb for booleans concept" + "name": "Booleans" }, { "uuid": "acec3b2a-c1cc-4583-bd4b-9f7ae41acfb3", "slug": "classes", - "name": "Classes", - "blurb": "TODO: add blurb for classes concept" + "name": "Classes" }, { "uuid": "dedd9182-66b7-4fbc-bf4b-ba6603edbfca", "slug": "conditionals", - "name": "Conditionals", - "blurb": "TODO: add blurb for conditionals concept" + "name": "Conditionals" }, { "uuid": "01d61b5c-8f50-4b12-9fe0-0723e6f00999", "slug": "floating-point-numbers", - "name": "Floating Point Numbers", - "blurb": "TODO: add blurb for floating-point-numbers concept" + "name": "Floating Point Numbers" }, { "uuid": "35001ed1-a7b9-4a80-a766-26725a29dc50", "slug": "instance-variables", - "name": "Instance Variables", - "blurb": "TODO: add blurb for instance-variables concept" + "name": "Instance Variables" }, { "uuid": "152d3976-dbcb-4a16-9f89-c61e0cdda4e5", "slug": "loops", - "name": "Loops", - "blurb": "TODO: add blurb for loops concept" + "name": "Loops" }, { "uuid": "aa31cd95-54b2-4728-8fe3-2fdc244b3f53", "slug": "nil", - "name": "Nil", - "blurb": "TODO: add blurb for nil concept" + "name": "Nil" }, { "uuid": "162721bd-3d64-43ff-889e-6fb2eac75709", "slug": "numbers", - "name": "Numbers", - "blurb": "TODO: add blurb for numbers concept" + "name": "Numbers" }, { "uuid": "3b1da281-7099-4c93-a109-178fc9436d68", "slug": "strings", - "name": "Strings", - "blurb": "TODO: add blurb for strings concept" + "name": "Strings" } ], "key_features": [],