Sha256: d554e3392cca27ff80cf6dbe048d422458b16f496163b7ef6b27ee8965d11f91
Contents?: true
Size: 554 Bytes
Versions: 95
Compression:
Stored size: 554 Bytes
Contents
require_relative 'fastlane_exception' module FastlaneCore class Interface class FastlaneError < FastlaneException attr_reader :show_github_issues attr_reader :error_info def initialize(show_github_issues: false, error_info: nil) @show_github_issues = show_github_issues @error_info = error_info end def prefix '[USER_ERROR]' end end end end class Exception def fastlane_should_report_metrics? # https://github.com/fastlane/fastlane/issues/11913 return false end end
Version data entries
95 entries across 95 versions & 1 rubygems