# File lib/hammer_cli/completer.rb, line 217 def filter(completions, last_word) if last_word.to_s != "" completions.select{|name| name.start_with? last_word } else completions end end