class OasRails::Spec::Specification

def initialize

Clears the cache if running in the development environment.
Initializes a new Specification object.
def initialize
  clear_cache unless Rails.env.production?
  @components = Components.new(self)
  @info = OasRails.config.info
  @openapi = '3.1.0'
  @servers = OasRails.config.servers
  @tags = OasRails.config.tags
  @external_docs = {}
  @paths = Spec::Paths.new(self)
end