lib/rspec_api_docs/config.rb in rspec-api-docs-0.5.0 vs lib/rspec_api_docs/config.rb in rspec-api-docs-0.6.0

- old
+ new

@@ -15,14 +15,16 @@ # Used to control the behaviour of the gem. class Config attr_accessor \ :output_dir, :renderer, - :validate_params + :validate_params, + :exclude_request_headers def initialize @output_dir = 'docs' @renderer = :json @validate_params = true + @exclude_request_headers = [] end end end