module Fastlane::Branch::FastlaneFormat
Public Instance Methods
option(opt)
click to toggle source
# File lib/fastlane/plugin/branch/fastlane_format.rb, line 7 def option(opt) if opt =~ /^no_/ opt_text = "#{opt.to_s.sub(/^no_/, '')}: false" else opt_text = opt.to_s end highlight opt_text end