class Verbosinator
Public Instance Methods
Source
# File lib/ceedling/verbosinator.rb, line 12 def should_output?(level) # Rely on global constant created at early stages of command line processing if !defined?(PROJECT_VERBOSITY) return (level <= Verbosity::NORMAL) end return (level <= PROJECT_VERBOSITY) end