class Spud::CLI::Options

Attributes

help[W]
inspect[W]

Public Instance Methods

help?() click to toggle source
# File lib/spud/cli/options.rb, line 19
def help?
  !!@help
end
inspect?() click to toggle source
# File lib/spud/cli/options.rb, line 24
def inspect?
  !!@inspect
end
watches() click to toggle source
# File lib/spud/cli/options.rb, line 13
def watches
  @watches = T.let(@watches, T.nilable(T::Array[String]))
  @watches ||= []
end