Sha256: 8ddf13bcc21f3c7411c779fa83b4080fd97c289988c482658f8ab212a54e7a65
Contents?: true
Size: 965 Bytes
Versions: 3
Compression:
Stored size: 965 Bytes
Contents
require "autodoc/collector" require "autodoc/configuration" require "autodoc/document" require "autodoc/version" module Autodoc class << self def collector @collector ||= Autodoc::Collector.new end def configuration @configuration ||= Autodoc::Configuration.new end end end if ENV["AUTODOC"] && defined?(RSpec) RSpec.configure do |config| config.after(:each, type: :request) do if example.metadata[:autodoc] Autodoc.collector.collect(example, request, response) end end config.after(:suite) do Autodoc.collector.documents.each do |filepath, documents| filepath = filepath.gsub("./spec/requests/", "").gsub("_spec.rb", ".md") pathname = Rails.root.join("doc") pathname += ENV["AUTODOC"] if ENV["AUTODOC"] != "1" pathname += filepath pathname.parent.mkpath pathname.open("w") {|file| file << documents.join("\n") } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
autodoc-0.1.2 | lib/autodoc.rb |
autodoc-0.1.1 | lib/autodoc.rb |
autodoc-0.1.0 | lib/autodoc.rb |