mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Clean up the wording in a few places
This commit is contained in:
parent
72bde8484f
commit
2cf86936b7
1 changed files with 4 additions and 4 deletions
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in a new issue