From 65e87816fe199518c35c93db0adedb260e925736 Mon Sep 17 00:00:00 2001 From: X_AJ_X <88792057+XAJX179@users.noreply.github.com> Date: Sat, 22 Nov 2025 23:58:08 +0530 Subject: [PATCH] feat(db/fixtures): Add a lesson 'Debugging with VSCode' in ruby course. --- db/fixtures/lessons/ruby_lessons.rb | 9 +++++++++ db/fixtures/paths/full_stack_rails/courses/ruby.rb | 1 + 2 files changed, 10 insertions(+) diff --git a/db/fixtures/lessons/ruby_lessons.rb b/db/fixtures/lessons/ruby_lessons.rb index 53b934ca78..65f42a9eee 100644 --- a/db/fixtures/lessons/ruby_lessons.rb +++ b/db/fixtures/lessons/ruby_lessons.rb @@ -339,5 +339,14 @@ def ruby_lessons previewable: false, identifier_uuid: '20b01618-5437-40c4-a362-8b5f51421b4d' }, + 'Debugging with VSCode' => { + title: 'Debugging with VSCode', + description: 'Learn to debug your code with VSCode.', + is_project: false, + # TODO: upgrade the path after PR https://github.com/TheOdinProject/curriculum/pull/30267 gets merged + # github_path: '/ruby/basic_ruby/debugging_with_vscode.md', + github_path: '/ruby/basic_ruby/debugging.md', + identifier_uuid: '0ef4b02d-21c9-4ea7-825f-927d4bbf2c2f', + }, } end diff --git a/db/fixtures/paths/full_stack_rails/courses/ruby.rb b/db/fixtures/paths/full_stack_rails/courses/ruby.rb index dea23a76cb..0e049dc78c 100644 --- a/db/fixtures/paths/full_stack_rails/courses/ruby.rb +++ b/db/fixtures/paths/full_stack_rails/courses/ruby.rb @@ -41,6 +41,7 @@ ruby_lessons.fetch('Hashes'), ruby_lessons.fetch('Methods'), ruby_lessons.fetch('Debugging'), + ruby_lessons.fetch('Debugging with VSCode'), ruby_lessons.fetch('Basic Enumerable Methods'), ruby_lessons.fetch('Predicate Enumerable Methods'), ruby_lessons.fetch('Nested Collections'),