From c62554aac93b23f84b3f76611b32a0fed09ce6e3 Mon Sep 17 00:00:00 2001 From: Olivier Lacan Date: Fri, 13 Jul 2018 23:25:01 +0200 Subject: [PATCH 1/2] Clarify that binstub can be created on Rails 4+ It's not just Rails 4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 682f66ccb1..06e28aa889 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ bundle exec rspec spec/controllers/accounts_controller_spec.rb:8 Specs can also be run via `rake spec`, though this command may be slower to start than the `rspec` command. -In Rails 4, you may want to create a binstub for the `rspec` command so it can +In Rails 4+, you may want to create a binstub for the `rspec` command so it can be run via `bin/rspec`: ``` From b09e0658a78f29a6d433531e601d79400c440b45 Mon Sep 17 00:00:00 2001 From: Olivier Lacan Date: Sat, 14 Jul 2018 19:01:34 +0200 Subject: [PATCH 2/2] Mention Rails 5 for the binstub creation as well --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06e28aa889..fbeedecf3d 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ bundle exec rspec spec/controllers/accounts_controller_spec.rb:8 Specs can also be run via `rake spec`, though this command may be slower to start than the `rspec` command. -In Rails 4+, you may want to create a binstub for the `rspec` command so it can +In Rails 4/5+, you may want to create a binstub for the `rspec` command so it can be run via `bin/rspec`: ```