aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-25 12:04:50 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-25 12:05:47 -0300
commit24a4cc741a948cd4a01d172a3bfbd68c509b4448 (patch)
tree439cc8b6d66c03cfd14ad502ba47ef6ee3239cc5 /guides/source/getting_started.textile
parentceb68d18745ec87e6a894a0c560dd726c84e8c6d (diff)
downloadrails-24a4cc741a948cd4a01d172a3bfbd68c509b4448.tar.gz
rails-24a4cc741a948cd4a01d172a3bfbd68c509b4448.tar.bz2
rails-24a4cc741a948cd4a01d172a3bfbd68c509b4448.zip
Rails 4 will be 1.9.3+ only [ci skip]
Diffstat (limited to 'guides/source/getting_started.textile')
-rw-r--r--guides/source/getting_started.textile12
1 files changed, 3 insertions, 9 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile
index f25e0c0200..897327a888 100644
--- a/guides/source/getting_started.textile
+++ b/guides/source/getting_started.textile
@@ -20,13 +20,7 @@ application from scratch. It does not assume that you have any prior experience
with Rails. However, to get the most out of it, you need to have some
prerequisites installed:
-* The "Ruby":http://www.ruby-lang.org/en/downloads language version 1.8.7 or higher
-
-TIP: Note that Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails
-3.0. Ruby Enterprise Edition have these fixed since release 1.8.7-2010.02
-though. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults
-on Rails 3.0, so if you want to use Rails 3 with 1.9.x jump on 1.9.2 or
-1.9.3 for smooth sailing.
+* The "Ruby":http://www.ruby-lang.org/en/downloads language version 1.9.3 or higher
* The "RubyGems":http://rubyforge.org/frs/?group_id=126 packaging system
** If you want to learn more about RubyGems, please read the "RubyGems User Guide":http://docs.rubygems.org/read/book/1
@@ -216,12 +210,12 @@ You need to do this because Rails will serve any static file in the +public+ dir
Next, you have to tell Rails where your actual home page is located.
-Open the file +config/routes.rb+ in your editor.
+Open the file +config/routes.rb+ in your editor.
<ruby>
Blog::Application.routes.draw do
get "welcome/index"
-
+
# The priority is based upon order of creation:
# first created -> highest priority.
# ...