class RspecApiDocumentation::Writers::ApiBlueprintWriter

Constants

EXTENSION

Public Instance Methods

extension() click to toggle source
# File lib/rspec_api_documentation/writers/api_blueprint_writer.rb, line 14
def extension
  EXTENSION
end
markup_example_class() click to toggle source
# File lib/rspec_api_documentation/writers/api_blueprint_writer.rb, line 10
def markup_example_class
  RspecApiDocumentation::Views::ApiBlueprintExample
end
markup_index_class() click to toggle source
# File lib/rspec_api_documentation/writers/api_blueprint_writer.rb, line 6
def markup_index_class
  RspecApiDocumentation::Views::ApiBlueprintIndex
end

Private Instance Methods

render_options() click to toggle source

API Blueprint is a spec, not navigable like HTML, therefore we generate only one file with all resources.

Calls superclass method
# File lib/rspec_api_documentation/writers/api_blueprint_writer.rb, line 22
def render_options
  super.merge({
    examples: false
  })
end