Sha256: ac39e2b2444c22ec35224db3d7ed814142e8fd6b6c1a936e6282f04b29d20013
Contents?: true
Size: 372 Bytes
Versions: 607
Compression:
Stored size: 372 Bytes
Contents
module Spaceship class Globals # if spaceship is run with a FastlaneCore available respect the global state there # otherwise fallback to $verbose def self.verbose? if Object.const_defined?("FastlaneCore") return FastlaneCore::Globals.verbose? # rubocop:disable Require/MissingRequireStatement end return $verbose end end end
Version data entries
607 entries across 607 versions & 2 rubygems