Sha256: 800b7a484898c777498c95e31c177786a938ba2bfdb43f584d581f75bd095064
Contents?: true
Size: 1.77 KB
Versions: 444
Compression:
Stored size: 1.77 KB
Contents
module Fastlane class LaneList # Print out the result of `generate` def self.output(path) puts generate(path) puts "Execute using `fastlane [lane_name]`".yellow end def self.generate(path) ff = Fastlane::FastFile.new(path) output = "" 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| next if (ff.runner.lanes[platform] || []).count == 0 plat_text = platform plat_text = "general" if platform.to_s.empty? output += "\n--------- #{plat_text}---------\n".yellow value = ff.runner.lanes[platform] next unless value value.each do |lane_name, lane| next if lane.is_private output += "----- fastlane #{lane.pretty_name}".green if lane.description.count > 0 output += "\n" + lane.description.join("\n") + "\n\n" else output += "\n\n" end end end output end def self.output_json(path) puts JSON.pretty_generate(self.generate_json(path)) end # Returns a hash def self.generate_json(path) output = {} return output if path.nil? ff = Fastlane::FastFile.new(path) all_keys = ff.runner.lanes.keys all_keys.each do |platform| next if (ff.runner.lanes[platform] || []).count == 0 output[platform] ||= {} value = ff.runner.lanes[platform] next unless value value.each do |lane_name, lane| next if lane.is_private output[platform][lane_name] = { description: lane.description.join("\n") } end end return output end end end
Version data entries
444 entries across 444 versions & 1 rubygems