Skip to content

Commit 9e182c8

Browse files
committed
Adding a Site Index page people can see at docs.railsbridge.org
1 parent 672efb2 commit 9e182c8

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

sites/docs/docs.step

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
message <<MARKDOWN
2+
# [Installfest](/installfest)
3+
4+
Instructions for installing Ruby and Rails on your computer. You are required to do this before going to a Rails workshop!
5+
6+
# [Curriculum](/curriculum)
7+
8+
The "classic" railsbridge curriculum (Suggestotron). Takes you step-by-step through making a Rails app, one command at a time, using helpers like `rails generate scaffold`.
9+
10+
# [Intermediate Rails](/intermediate-rails)
11+
12+
Curriculum for students who have taken Suggestotron more than once. 'Easy mode' is now OFF - this curriculum won't tell you what to type in!
13+
14+
# [Frontend](/frontend)
15+
16+
HTML + CSS for beginners. Make a website, no server required!
17+
18+
# [Workshop](/workshop)
19+
20+
The Railsbridge junkyard! Slide decks for opening/closing presentations, teacher training.
21+
22+
MARKDOWN

spec/site_index_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
end
1111

1212
it "lists all sites in the /sites/ directory, sorted, except 'es'" do
13-
@site_index.sites.should =~ ["curriculum", "frontend", "installfest", "intermediate-rails", "workshop"]
13+
@site_index.sites.should =~ ["curriculum", "docs", "frontend", "installfest", "intermediate-rails", "workshop"]
1414
end
1515

1616
it "emboldens the current site, links other sites" do

0 commit comments

Comments
 (0)