Sha256: e34016f810344bceb5d3ef63026a87f5663c1a54cb33cde366574ddd4dc0c352
Contents?: true
Size: 322 Bytes
Versions: 431
Compression:
Stored size: 322 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? end return $verbose end end end
Version data entries
431 entries across 431 versions & 1 rubygems