Skip to content

Commit

Permalink
added gearing up lesson to seeds
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMulhern committed Jun 19, 2016
1 parent 557fe8d commit 3734a0e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,17 @@ def require_updates?(real_attrs, seed_attrs)
url: "/web_development_101/how_this_course_will_work.md"
)

lesson_counter += 1
create_or_update_lesson(
title: "Gearing Up",
title_url: "Gearing Up".parameterize,
description: "Some advice about how to approach learning to program.",
position: lesson_counter,
section_id: section.id,
is_project: false,
url: "/web_development_101/gearing_up.md"
)

lesson_counter += 1
create_or_update_lesson(
title: "How Does the Web Work?",
Expand Down

0 comments on commit 3734a0e

Please sign in to comment.