Skip to content

Commit bfc6937

Browse files
committed
rename twitter bootstrap to just bootstrap also other copy edits
1 parent ec757d9 commit bfc6937

4 files changed

+13
-13
lines changed

sites/intermediate_rails/create_a_new_rails_app_with_a_static_home_page.step

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ end
99
discussion do
1010
message <<-MARKDOWN
1111
* In order to have a static home page, you will need a route, a controller, a view. Discuss!
12-
* Seriously. If you don't discuss this stuff, things will be SO much harder.
12+
* Seriously. If you don't discuss this stuff, things will be SO much harder.
1313
* We’re using `rails g resource` instead of `rails g scaffold` because it forces you, the developer, to do more understanding-building brain work. The teacher/TAs can perhaps comment on what they would do in the real world and their thoughts on the excellence of this choice for learning-purposes.
1414
* What do you need to add to your home controller (after you've made it) to have a static home page?
1515
* How does the home/index.html.erb view file relate to the layouts/application.html.erb view file?

sites/intermediate_rails/install_devise.step

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ message <<-MARKDOWN
3838
MARKDOWN
3939
end
4040

41-
next_step "make_it_pretty_with_twitter_bootstrap"
41+
next_step "make_it_pretty_with_bootstrap"

sites/intermediate_rails/intermediate_rails.step

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ message <<-MARKDOWN
22
# Let's build a message board!
33

44
## Assumptions made by this curriculum
5-
* You’ve gone through the standard RailsBridge installfest and have all the the various Rubies, Railses, Gits, RVMs, a text editor, and anything else in the installfest.
6-
* You’ve gone through the RailsBridge Suggestotron curriculum at least once before, or maybe a couple of times, or maybe you feel decently comfortable with Rails for some other reason.
5+
* You’ve gone through the standard RailsBridge installfest and have successfully completed the [Get a Sticker](http://installfest.railsbridge.org/installfest/get_a_sticker) step.
6+
* You’ve gone through the RailsBridge [Suggestotron curriculum](http://installfest.railsbridge.org/curriculum/) at least once before, or maybe a couple of times, or maybe you feel decently comfortable with Rails for some other reason.
77
* You want to learn more Rails!!!
88

99
## Goals
@@ -14,14 +14,14 @@ message <<-MARKDOWN
1414
## What’s Going to Happen?
1515
* We’re going to build a message board system, where there are posts on the front page and you click through to see the original post plus discussion below.
1616

17-
* We’ve divided this into six challenges (with one bonus item):
18-
* Challenge 0: review rails & create your app
19-
* Challenge 1: make a static home page
17+
* We’ve divided this into challenges:
18+
* Challenge 1: create a new rails app with a static home page
2019
* Challenge 2: install devise
21-
* Challenge 3: make it pretty with Twitter bootstrap
22-
* Challenge 4: add posts functionality
23-
* Challenge 5: add commenting
24-
* Challenge 6: other features of your choice
20+
* Challenge 3: make it pretty with bootstrap
21+
* Challenge 4: add pages to create and look at individual posts
22+
* Challenge 5: make a posts index page
23+
* Challenge 6: add commenting
24+
* Challenge 7: other features of your choice
2525

2626
* Each time you get your app into a functional state, before adding any more features, COMMIT TO GIT! The new features will probably break things, which is neat, but you’ll want to be able to roll back to a prior version if necessary.
2727

sites/intermediate_rails/make_it_pretty_with_twitter_bootstrap.step renamed to sites/intermediate_rails/make_it_pretty_with_bootstrap.step

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ end
88
discussion do
99
message <<-MARKDOWN
1010
* Chrome developer tools / Firefox Firebug plugin — how to use ’em!
11-
* What’s Twitter Bootstrap and (optional) why is everyone totally in love with it?
11+
* What’s Bootstrap and (optional) why is everyone totally in love with it (or at least using it all over the place)?
1212
* What's Sass? Does anyone know?
1313
* Maybe review the home/index.html.erb view file as it relates to the layouts/application.html.erb view file again, and where you might want to make some edits to take advantage of bootstrap.
1414
* Someone should explain how erb works — you'll be using it to show the user email address in right side
@@ -17,7 +17,7 @@ end
1717

1818
tools_and_references do
1919
message <<-MARKDOWN
20-
* A gem for Twitter Bootstrap!! Let’s use the gem bootstrap-sass: https://github.com/thomas-mcdonald/bootstrap-sass
20+
* A gem for Bootstrap!! Let’s use the gem bootstrap-sass: https://github.com/thomas-mcdonald/bootstrap-sass
2121
* Bootstrap docs: http://twitter.github.com/bootstrap/base-css.html
2222
* Here's a link to the navbar section: http://twitter.github.com/bootstrap/components.html#navbar
2323
MARKDOWN

0 commit comments

Comments
 (0)