Flowdock
select_message(receiver, message, candidates) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/irb/completion.rb, line 187
    def self.select_message(receiver, message, candidates)
      candidates.grep(/^#{message}/).collect do |e|
        case e
        when /^[a-zA-Z_]/
          receiver + "." + e
        when /^[0-9]/
        when *Operators
          #receiver + " " + e
        end
      end
    end
Register or log in to add new notes.