diff options
author | Steven Harman <steven@harmanly.com> | 2014-04-11 16:14:08 -0400 |
---|---|---|
committer | Steven Harman <steven@harmanly.com> | 2014-04-11 16:14:08 -0400 |
commit | 21bb6e00107b5e089f4b16054ab61b18a71e01fd (patch) | |
tree | c3a2676a318e15a1031c4a6a34b44c1911690087 | |
parent | d870cfd981d017fb39ae805832cbef773e7abc02 (diff) | |
download | rails-21bb6e00107b5e089f4b16054ab61b18a71e01fd.tar.gz rails-21bb6e00107b5e089f4b16054ab61b18a71e01fd.tar.bz2 rails-21bb6e00107b5e089f4b16054ab61b18a71e01fd.zip |
Fix a few grammar issues. [ci skip]
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index a866c1caa4..6a350b59ee 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -158,7 +158,7 @@ In case you can't use the Rails development box, see section above, check [this ### Clone the Rails Repository ### -To do to be able to contribute code, you need to clone the rails repository: +To do to be able to contribute code, you need to clone the Rails repository: ```bash $ git clone git://github.com/rails/rails.git @@ -175,8 +175,7 @@ It doesn't matter much what name you use, because this branch will only exist on ### Running an Application Against Your Local Branch ### -Incase, you need a dummy rails app to test change, The `--dev` flag of `rails new` generates an application that uses your local -branch: +In case you need a dummy Rails app to test changes, the `--dev` flag of `rails new` generates an application that uses your local branch: ```bash $ cd rails @@ -228,13 +227,13 @@ tests are passing, that's enough to propose your contribution. We have [Travis CI](https://travis-ci.org/rails/rails) as a safety net for catching unexpected breakages elsewhere. -#### Entire rails: +#### Entire Rails: To run all the tests, do: ```bash $ cd rails $ bundle exec rake test ``` -#### Particular component of rails +#### Particular component of Rails To run tests only for particular component(ActionPack, ActiveRecord etc). For example, to run `ActionMailer` test do ```bash $ cd actionmailer |