Class: Fastlane::DocsGenerator

Inherits:
Object
  • Object
show all
Defined in:
fastlane/lib/fastlane/documentation/docs_generator.rb

Helper collapse

Class Method Summary collapse

Class Method Details

.formatted_platform(pl) ⇒ Object



65
66
67
68
69
70
71
72
# File 'fastlane/lib/fastlane/documentation/docs_generator.rb', line 65

def self.formatted_platform(pl)
  pl = pl.to_s
  return "iOS" if pl == 'ios'
  return "Mac" if pl == 'mac'
  return "Android" if pl == 'android'

  return pl
end

.render(platform, lane, description) ⇒ Object

Parameters:



77
78
79
80
81
82
83
84
85
86
87
# File 'fastlane/lib/fastlane/documentation/docs_generator.rb', line 77

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

.run(ff, output_path = nil) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'fastlane/lib/fastlane/documentation/docs_generator.rb', line 3

def self.run(ff, output_path = nil)
  output_path ||= File.join(FastlaneCore::FastlaneFolder.path || '.', 'README.md')

  output = ["fastlane documentation"]
  output << "================"

  output << "# Installation"
  output << ""
  output << "Make sure you have the latest version of the Xcode command line tools installed:"
  output << ""
  output << "```"
  output << "xcode-select --install"
  output << "```"
  output << ""
  output << "Install _fastlane_ using"
  output << "```"
  output << "[sudo] gem install fastlane -NV"
  output << "```"
  output << "or alternatively using `brew cask install fastlane`"
  output << ""
  output << "# Available Actions"

  all_keys = ff.runner.lanes.keys.reject(&:nil?)
  all_keys.unshift(nil) # because we want root elements on top. always! They have key nil

  all_keys.each do |platform|
    lanes = ff.runner.lanes[platform]

    if lanes.nil? || lanes.empty? || lanes.all? { |_, lane| lane.is_private }
      next
    end

    output << "## #{formatted_platform(platform)}" if platform

    lanes.each do |lane_name, lane|
      next if lane.is_private
      output << render(platform, lane_name, lane.description.join("\n\n"))
    end

    output << ""
    output << "----"
    output << ""
  end

  output << "This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run."
  output << "More information about fastlane can be found on [fastlane.tools](https://fastlane.tools)."
  output << "The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools)."
  output << ""

  begin
    File.write(output_path, output.join("\n"))
    UI.success("Successfully generated documentation at path '#{File.expand_path(output_path)}'") if FastlaneCore::Globals.verbose?
  rescue => ex
    UI.error(ex)
    UI.error("Couldn't save fastlane documentation at path '#{File.expand_path(output_path)}', make sure you have write access to the containing directory.")
  end
end