aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/initialization.md
diff options
context:
space:
mode:
authorJonathan Roes <jroes@jroes.net>2013-04-18 23:00:47 -0300
committerJonathan Roes <jroes@jroes.net>2013-04-18 23:00:47 -0300
commit1af528df58ea20fecd2668fd065144a1ba573658 (patch)
tree9378b3e7c96d201f8a47c9b4a8170a38a8f529f4 /guides/source/initialization.md
parente9eb30fae4f0a9645bcc258fa515182a29e72998 (diff)
downloadrails-1af528df58ea20fecd2668fd065144a1ba573658.tar.gz
rails-1af528df58ea20fecd2668fd065144a1ba573658.tar.bz2
rails-1af528df58ea20fecd2668fd065144a1ba573658.zip
Remove versions from gems listing
Since they will undoubtedly change often, it would be simpler to just include the names of the gems instead of updating this list every time Rails is released.
Diffstat (limited to 'guides/source/initialization.md')
-rw-r--r--guides/source/initialization.md56
1 files changed, 27 insertions, 29 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md
index 412f2faaaa..610792fd6a 100644
--- a/guides/source/initialization.md
+++ b/guides/source/initialization.md
@@ -59,35 +59,33 @@ dependencies of the application. `config/boot.rb` sets
`ENV['BUNDLE_GEMFILE']` to the location of this file. If the Gemfile
exists, `bundler/setup` is then required.
-The gems that a Rails 4 application depends on are as follows:
-
-TODO: change these when the Rails 4 release is near.
-
-* abstract (1.0.0)
-* actionmailer (4.0.0.beta)
-* actionpack (4.0.0.beta)
-* activemodel (4.0.0.beta)
-* activerecord (4.0.0.beta)
-* activesupport (4.0.0.beta)
-* arel (2.0.7)
-* builder (3.0.0)
-* bundler (1.0.6)
-* erubis (2.6.6)
-* i18n (0.5.0)
-* mail (2.2.12)
-* mime-types (1.16)
-* polyglot (0.3.1)
-* rack (1.2.1)
-* rack-cache (0.5.3)
-* rack-mount (0.6.13)
-* rack-test (0.5.6)
-* rails (4.0.0.beta)
-* railties (4.0.0.beta)
-* rake (0.8.7)
-* sqlite3-ruby (1.3.2)
-* thor (0.14.6)
-* treetop (1.4.9)
-* tzinfo (0.3.23)
+A standard Rails application depends on several gems, specifically:
+
+* abstract
+* actionmailer
+* actionpack
+* activemodel
+* activerecord
+* activesupport
+* arel
+* builder
+* bundler
+* erubis
+* i18n
+* mail
+* mime-types
+* polyglot
+* rack
+* rack-cache
+* rack-mount
+* rack-test
+* rails
+* railties
+* rake
+* sqlite3-ruby
+* thor
+* treetop
+* tzinfo
### `rails/commands.rb`