We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb87226 + 0ab53a0 commit 117b82dCopy full SHA for 117b82d
lib/rspec_api_documentation.rb
@@ -38,6 +38,7 @@ module Writers
38
autoload :TextileWriter
39
autoload :MarkdownWriter
40
autoload :JSONWriter
41
+ autoload :JsonWriter
42
autoload :AppendJsonWriter
43
autoload :JsonIodocsWriter
44
autoload :IndexHelper
lib/rspec_api_documentation/writers/json_writer.rb
@@ -23,6 +23,10 @@ def write_examples
23
end
24
25
26
+ # https://github.com/zipmark/rspec_api_documentation/issues/382
27
+ # backward compatibilty json for configuration of config.format
28
+ class JsonWriter < JSONWriter; end
29
+
30
class JSONIndex
31
def initialize(index, configuration)
32
@index = index
0 commit comments