We noticed while working on https://github.com/tpope/vim-rails/issues/368 , that generators does use a different naming scheme for requests specs. For example, for a Posts Controller, the scaffold generator use [`spec/requests/posts_spec.rb`](https://github.com/rspec/rspec-rails/blob/master/spec/generators/rspec/scaffold/scaffold_generator_spec.rb#L9), while using the controller generator does create [`spec/requests/posts_request_spec.rb`](https://github.com/rspec/rspec-rails/blob/9fb6c9c482da29b8803dd6f17b34d37a6367b8f2/spec/generators/rspec/controller/controller_generator_spec.rb#L9). There is a shared example for requests specs [here](https://github.com/rspec/rspec-rails/blob/9fb6c9c482da29b8803dd6f17b34d37a6367b8f2/spec/support/generators.rb#L46) that does use the first naming, that might be re-used everywhere to have a consistent naming scheme. It seems like a minor issue, what are your opinions about this?