Method: Codebuild::Completer#found?

Defined in:
lib/codebuild/completer.rb

#found?(command) ⇒ Boolean



111
112
113
114
# File 'lib/codebuild/completer.rb', line 111

def found?(command)
  public_methods = @command_class.public_instance_methods(false)
  command && public_methods.include?(command.to_sym)
end