# File lib/fastcst/command.rb, line 129 129: def commands 130: list = Command.derivatives() 131: match = Regexp.new("(.*::.*)|(.*command.*)", Regexp::IGNORECASE) 132: 133: results = [] 134: list.keys.each do |key| 135: results << key unless match.match(key.to_s) 136: end 137: 138: return results.sort 139: end