Skip to content

Commit 6888ccb

Browse files
committed
Merge pull request railsbridge#495 from RailsBridge-CapeTown/more-friendly-less-scary
More friendly less scary
2 parents 667ab2d + cd1372a commit 6888ccb

7 files changed

+15
-13
lines changed

sites/en/installfest/create_a_rails_app.step

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ step "Create a new Rails app" do
3232
tip "Shortcut: Just type 'rails s'" do
3333
message <<-MARKDOWN
3434
Throughout your Rails programming career you're going to type `rails server` a
35-
lot. In fact, you'll type this so much that DHH and the Rails Core team
36-
decided to save you 5 keystrokes per server restart. Simply typing `rails s`
37-
is the same as `rails server`.
35+
lot. Simply typing `rails s` is the same as `rails server`.
3836
MARKDOWN
3937
end
4038

sites/en/installfest/installfest.step

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
message "This is a set of step-by-step instructions for installing Ruby, Rails, and other important tools on Mac, Windows, or Linux computers. Originally developed for the [Railsbridge Workshops](http://railsbridge.org), it is a community-supported open-source documentation project. If you want to contribute, click the [git] link at the top-right corner of any page and submit your change on GitHub."
22

3+
message "**You'll repeat all these steps tomorrow, but more slowly so you can better understand what's going on under the hood.** Today we just want to check that everything's set up and ready for tomorrow."
4+
35
step "Prepare for the Installfest" do
46
message <<-MARKDOWN
57

sites/en/installfest/osx_rvm.step

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
step "Open Terminal" do
2-
message "Look for **Terminal.app** inside Applications -> Utilities."
2+
message "Look for **Terminal.app** inside Applications -> Utilities, or use Spotlight search (Command + Space Bar) to find it."
33

44
message "Add it to your dock; you'll be using it a lot. (To add it to the dock, click and hold the dock icon once Terminal is open. Select options -> keep in dock.)"
55

sites/en/intro-to-rails/_working_effectively_and_efficiently.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ We highly recommend you do the following:
99
* Bring up one window with two tabs
1010
* One for this content
1111
* One for interacting with your app.
12-
* Open your text editor and _do not ever close it_. We're not quitters.
13-
* Hide all extra applications. Turn off Twitter, IM, and all other distractions.
12+
* Open your text editor and don't close it.
13+
* Hide all extra applications. Turn off Twitter, Facebook, IM, and all other distractions.
1414

1515
By minimizing the number of things you interact with, you reduce the
1616
amount of time spent switching between them and the context lost as
1717
you work through the lessons. Having 50 tabs open in your web
18-
browser gets confusing and wastes time.
18+
browser gets confusing.

sites/en/intro-to-rails/credits_and_next_steps.step

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Guess what? _**You're done!!!**_ Congratulations, you just \"finished\" your fi
33

44
(They're never _really_ ever finished... have fun tweaking it!)
55

6+
You get another sticker! :)
7+
68
# Extra Credit
79

810
If you got all the way through Suggestotron with some time to spare, here's some extra stuff you can try:

sites/en/intro-to-rails/getting_started.step

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ end
77

88
steps do
99

10-
tip "If you have _any_ problems, contact a TA immediately."
10+
tip "If you have any problems, call over a TA."
1111

1212
step do
1313
insert 'switch_to_home_directory'
1414
end
15-
15+
1616
step do
1717
console "mkdir railsbridge"
1818
message "This command creates a new directory for us to store our project in."

sites/en/intro-to-rails/intro-to-rails.step

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ application online you should understand:
2323
* How to try your Ruby code (IRB)
2424
* How to go from requirements to a new working Rails application
2525
* How to get your application online
26-
* The basic tools a RoR developer uses (source control, editor, console, local server)
26+
* The basic tools a RoR (Ruby on Rails) developer uses (source control, editor, console, local server)
2727

2828
### Schedule
2929

@@ -76,7 +76,7 @@ Each lesson will look like this:
7676
<div class="goals">
7777
<h1>Goal:</h1>
7878
<p>Description of the current step.
79-
<p>Red because big goals are scary.
79+
<p>Red because big goals it's important.
8080
</div>
8181
<div class="steps">
8282
<h1>Steps:</h1>
@@ -87,11 +87,11 @@ def code_to_write
8787
1 + 1
8888
end</pre>
8989
</div>
90-
<p>Yellow because we've gotten it done, but we have no clue what's going on.
90+
<p>Yellow because we've gotten it done, but we're not sure yet what's going on.
9191
</div>
9292
<div class="explanation">
9393
<h1>Explanation</h1>
94-
<p>Details of what the steps actually did... spell out the cause and effect.
94+
<p>Details of what the steps actually did, explaining the cause and effect.
9595
<p>Green because we can tie everything together now.
9696
</div>
9797
</div>

0 commit comments

Comments
 (0)