From 2bc6755e608ecf9c9581fad6b8dedf14af1653e7 Mon Sep 17 00:00:00 2001 From: James Tippett Date: Wed, 3 May 2017 22:32:40 +0700 Subject: [PATCH] Fix require in readme example Modern version of rails use `rails_helper` instead of `spec_helper` to pull in all rails dependencies. With the example as written, the code will not work. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35bec742..5a3dc409 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Set up specs. $ vim spec/acceptance/orders_spec.rb ```ruby -require 'spec_helper' +require 'rails_helper' require 'rspec_api_documentation/dsl' resource "Orders" do