class Spaceship::Globals
Public Class Methods
verbose?()
click to toggle source
if spaceship is run with a FastlaneCore
available respect the global state there otherwise fallback to $verbose
# File spaceship/lib/spaceship/globals.rb, line 5 def self.verbose? if Object.const_defined?("FastlaneCore") return FastlaneCore::Globals.verbose? # rubocop:disable Require/MissingRequireStatement end return $verbose end