From 44007c964362fe77cc2013184b59a6f44579730e Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Sat, 1 Aug 2015 12:08:29 -0700 Subject: [PATCH 1/3] implement ckylee additional test to everything be true bonfire #1397 --- seed/challenges/basic-bonfires.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json index 7296435fa3..88652bc85e 100644 --- a/seed/challenges/basic-bonfires.json +++ b/seed/challenges/basic-bonfires.json @@ -1464,7 +1464,9 @@ ], "tests": [ "assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], 'sex'), true, 'should return true if predicate returns truthy for all elements in the collection');", - "assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], {'sex': 'female'}), false, 'should return false if predicate returns falsey for any element in the collection');" + "assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'male'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], {'sex': 'female'}), false, 'should return false if predicate returns falsey for any element in the collection');", + "assert.strictEqual(every([{'user': 'Tinky-Winky', 'sex': 'female'}, {'user': 'Dipsy', 'sex': 'male'}, {'user': 'Laa-Laa', 'sex': 'female'}, {'user': 'Po', 'sex': 'female'}], {'sex': 'female'}), false, 'should return false if predicate returns falsey for any element in the collection');" + ], "MDNlinks": [ "Object.hasOwnProperty()", From 8ded4558cf27c729bab7d3b80fd16365f8dcd94b Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Sat, 1 Aug 2015 12:26:57 -0700 Subject: [PATCH 2/3] add back path join in gulpfile DO NOT REMOVE --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index b8aa6ff0fb..c55daf01da 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -126,7 +126,7 @@ gulp.task('serve', function(cb) { script: paths.server, ext: '.js .json', ignore: paths.serverIgnore, - exec: './node_modules/.bin/babel-node', + exec: path.join(__dirname, 'node_modules/.bin/babel-node'), env: { 'NODE_ENV': 'development', 'DEBUG': process.env.DEBUG || 'freecc:*' From 21cc71ab24dd63ccdb8928466896116fff823e19 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Sat, 1 Aug 2015 12:36:42 -0700 Subject: [PATCH 3/3] add help room to chat room challenge, thanks to SaintPeter's suggestion --- seed/challenges/get-set-for-free-code-camp.json | 1 + 1 file changed, 1 insertion(+) diff --git a/seed/challenges/get-set-for-free-code-camp.json b/seed/challenges/get-set-for-free-code-camp.json index ef8b068975..3dc603a7ae 100644 --- a/seed/challenges/get-set-for-free-code-camp.json +++ b/seed/challenges/get-set-for-free-code-camp.json @@ -68,6 +68,7 @@ "Once you're in our chat room, introduce yourself by saying : \"Hello world!\".", "Tell your fellow campers how you found Free Code Camp. Also tell us why you want to learn to code.", "We have a busy chat room, so be sure to configure your notification settings in the top right corner.", + "Also Join our help chat room: https://gitter.im/FreeCodeCamp/help, where you can get help with our challenges in real time.", "Keep the chat room open while you work through the other challenges. That way you ask for help if you get stuck on a challenge. You can also socialize when you feel like taking a break.", "You can also download a desktop or mobile chat application here: https://gitter.im/apps", "You can also access this chat room by clicking the \"Chat\" button in the upper right hand corner.",