aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Roes <jroes@jroes.net>2013-05-01 23:18:24 -0300
committerJonathan Roes <jroes@jroes.net>2013-05-01 23:18:24 -0300
commit2cf86936b7222ff8245d37b656c8ddc621ae52ea (patch)
treeaf779655495abea4e4e22b8ad830acbe15344c8b
parent72bde8484f4b4fe373a2e24edde47539530a65f6 (diff)
downloadrails-2cf86936b7222ff8245d37b656c8ddc621ae52ea.tar.gz
rails-2cf86936b7222ff8245d37b656c8ddc621ae52ea.tar.bz2
rails-2cf86936b7222ff8245d37b656c8ddc621ae52ea.zip
Clean up the wording in a few places
-rw-r--r--guides/source/development_dependencies_install.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/development_dependencies_install.md b/guides/source/development_dependencies_install.md
index 312199f8fd..5647a4c1b7 100644
--- a/guides/source/development_dependencies_install.md
+++ b/guides/source/development_dependencies_install.md
@@ -57,7 +57,7 @@ If you are on Fedora or CentOS, you can run
$ sudo yum install libxml2 libxml2-devel libxslt libxslt-devel
```
-If you have any problems with these libraries, you should install them manually compiling the source code. Just follow the instructions at the [Red Hat/CentOS section of the Nokogiri tutorials](http://nokogiri.org/tutorials/installing_nokogiri.html#red_hat__centos) .
+If you have any problems with these libraries, you can install them manually by compiling the source code. Just follow the instructions at the [Red Hat/CentOS section of the Nokogiri tutorials](http://nokogiri.org/tutorials/installing_nokogiri.html#red_hat__centos) .
Also, SQLite3 and its development files for the `sqlite3-ruby` gem — in Ubuntu you're done with just
@@ -97,7 +97,7 @@ $ cd actionpack
$ bundle exec rake test
```
-If you want to run the tests located in a specific directory use the `TEST_DIR` environment variable. For example, this will run the tests of the `railties/test/generators` directory only:
+If you want to run the tests located in a specific directory use the `TEST_DIR` environment variable. For example, this will run the tests in the `railties/test/generators` directory only:
```bash
$ cd railties
@@ -137,14 +137,14 @@ $ sudo yum install mysql-server mysql-devel
$ sudo yum install postgresql-server postgresql-devel
```
-After that run:
+After that, run:
```bash
$ rm .bundle/config
$ bundle install
```
-We need first to delete `.bundle/config` because Bundler remembers in that file that we didn't want to install the "db" group (alternatively you can edit the file).
+First, we need to delete `.bundle/config` because Bundler remembers in that file that we didn't want to install the "db" group (alternatively you can edit the file).
In order to be able to run the test suite against MySQL you need to create a user named `rails` with privileges on the test databases: