Skip to content

Instantly share code, notes, and snippets.

@Thanatermesis
Created August 25, 2014 23:26
Show Gist options
  • Save Thanatermesis/6929fa4984a00c737030 to your computer and use it in GitHub Desktop.
Save Thanatermesis/6929fa4984a00c737030 to your computer and use it in GitHub Desktop.
def find_keyword(m)
@keywords.keys.map{|keyword|
Regexp.new(keyword).match(m.message)
}.compact.sort_by{|matchdata|
matchdata.begin(0)
}.each{|matchdata|
m.reply @keywords[matchdata[0]]
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment