Sha256: e73698167abbd9689ff19fe7f9ceebcf57cc957d3716e0d0d3f65e859b6c47ae
Contents?: true
Size: 1.53 KB
Versions: 8
Compression:
Stored size: 1.53 KB
Contents
namespace :praxis do namespace :docs do desc "Generate OpenAPI 3 docs for a Praxis App" task :generate => [:environment] do |t, args| require 'fileutils' Praxis::Blueprint.caching_enabled = false generator = Praxis::Docs::OpenApiGenerator.new(Dir.pwd) generator.save! end desc "Preview (and Generate) OpenAPI 3 docs for a Praxis App" task :preview => [:generate] do |t, args| require 'webrick' docs_port = 9090 root = Dir.pwd + '/docs/openapi/' wb = Thread.new do s = WEBrick::HTTPServer.new(:Port => docs_port, :DocumentRoot => root) trap('INT') { s.shutdown } s.start end # If there is only 1 version we'll feature it and open the browser onto it versions = Dir.children(root) featured_version = (versions.size < 2) ? "#{versions.first}/" : '' `open http://localhost:#{docs_port}/#{featured_version}` wb.join end desc "Generate and package all OpenApi Docs into a zip, ready for a Web server (like S3...) to present it" task :package => [:generate] do |t, args| docs_root = Dir.pwd + '/docs/openapi/' zip_file = Dir.pwd + '/docs/openapi.zip' `rm -f #{zip_file}` # NOTE: This assumes the "zip" utility is installed, supporting the recursive flag. `zip -r #{zip_file} #{docs_root}` puts puts "Left packaged API docs in #{zip_file}" puts " --> To view the docs, unzip the file under a web server (or S3...) and access the index.hml files from a browser" end end end
Version data entries
8 entries across 8 versions & 1 rubygems