diff options
author | yui-knk <spiketeika@gmail.com> | 2015-07-08 13:07:15 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-07-08 13:07:15 +0900 |
commit | 8f4ed7f900aca829ad59a92aee3a62b4168fe2eb (patch) | |
tree | feba390d718d3338bb689284475043d0b53579ba /guides | |
parent | f6f3772c174651548c622611c5433f64ad7cf2eb (diff) | |
download | rails-8f4ed7f900aca829ad59a92aee3a62b4168fe2eb.tar.gz rails-8f4ed7f900aca829ad59a92aee3a62b4168fe2eb.tar.bz2 rails-8f4ed7f900aca829ad59a92aee3a62b4168fe2eb.zip |
[ci skip] Add `bundle exec` to Running a Single Test
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/contributing_to_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index c19813c8a5..846b8a007d 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -295,7 +295,7 @@ You can run a single test through ruby. For instance: ```bash $ cd actionmailer -$ ruby -w -Itest test/mail_layout_test.rb -n test_explicit_class_layout +$ bundle exec ruby -w -Itest test/mail_layout_test.rb -n test_explicit_class_layout ``` The `-n` option allows you to run a single method instead of the whole |