require 'google-search' # Responds with the first google image search result matching a query. class Robut::Plugin::GoogleImages include Robut::Plugin desc "image - responds with the first image from a Google Images search for " match /^image (.*)/, :sent_to_me => true do |query| image = Google::Search::Image.new(:query => query).first if image reply image.uri else reply "Couldn't find an image" end end end