Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: add Ruby Project Management and Linting lessons #4540

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions db/fixtures/lessons/ruby_lessons.rb
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,20 @@ def ruby_lessons
github_path: '/ruby/object_oriented_programming_basics/object_oriented_programming.md',
identifier_uuid: '15924a5e-c72d-44f9-8546-78b05b903274',
},
'Project Management' => {
title: 'Project Management',
description: 'This lesson goes over managing Ruby projects and installing Gems.',
is_project: false,
github_path: '/ruby/object_oriented_programming_basics/managing_ruby_projects.md',
identifier_uuid: 'edfa2f6a-6534-41e9-bc2d-a1253bcc1c41',
},
'Linting and RuboCop' => {
title: 'Linting and RuboCop',
description: 'This lesson goes over importance of rules and how to follow them with the help of RuboCop.',
is_project: false,
github_path: '/ruby/object_oriented_programming_basics/linting_and_rubocop.md',
identifier_uuid: 'd0fefa97-3201-474c-9636-3592fb9399d8',
},
'Tic Tac Toe' => {
title: 'Tic Tac Toe',
description: "It's time to flex those new muscles a bit by building Tic Tac Toe",
Expand Down
2 changes: 2 additions & 0 deletions db/fixtures/paths/full_stack_rails/courses/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@

section.add_lessons(
ruby_lessons.fetch('Object Oriented Programming'),
ruby_lessons.fetch('Project Management'),
ruby_lessons.fetch('Linting and RuboCop'),
ruby_lessons.fetch('Tic Tac Toe'),
ruby_lessons.fetch('Mastermind'),
)
Expand Down