Class: Spaceship::Globals
- Inherits:
-
Object
- Object
- Spaceship::Globals
- Defined in:
- spaceship/lib/spaceship/globals.rb
Class Method Summary collapse
-
.verbose? ⇒ Boolean
if spaceship is run with a FastlaneCore available respect the global state there otherwise fallback to $verbose.
Class Method Details
.verbose? ⇒ Boolean
if spaceship is run with a FastlaneCore available respect the global state there otherwise fallback to $verbose
5 6 7 8 9 10 |
# 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 |