Sha256: fd82c7128de116f36cbdd17c2987526cdadfcec546102bb6814366390589f4db
Contents?: true
Size: 1.8 KB
Versions: 4
Compression:
Stored size: 1.8 KB
Contents
module Fastlane class DocsGenerator def self.run(output_path, ff) output = ["fastlane documentation"] output << "================" output << "# Installation" output << "```" output << "sudo gem install fastlane" output << "```" output << "# Available Actions" all_keys = ff.runner.description_blocks.keys.reject(&:nil?) all_keys.unshift(nil) # because we want root elements on top. always! They have key nil all_keys.each do |platform| output << "## #{formatted_platform(platform)}" if platform value = ff.runner.description_blocks[platform] if value value.each do |lane, description| output << render(platform, lane, description) end output << "" output << "----" output << "" end end output << "Generate this documentation by running `fastlane docs`" output << "More information about fastlane can be found on [https://fastlane.tools](https://fastlane.tools)." output << "The documentation of fastlane can be found on [GitHub](https://github.com/KrauseFx/fastlane)" File.write(output_path, output.join("\n")) Helper.log.info "Successfully generated documentation to path '#{File.expand_path(output_path)}'".green end private def self.formatted_platform(pl) pl = pl.to_s return "iOS" if pl == 'ios' return "Mac" if pl == 'mac' return pl end def self.render(platform, lane, description) full_name = [platform, lane].reject(&:nil?).join(' ') output = [] output << "### #{full_name}" output << "```" output << "fastlane #{full_name}" output << "```" output << description output end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fastlane-1.8.0 | lib/fastlane/docs_generator.rb |
fastlane-1.7.3 | lib/fastlane/docs_generator.rb |
fastlane-1.7.2 | lib/fastlane/docs_generator.rb |
fastlane-1.7.1 | lib/fastlane/docs_generator.rb |