Skip to content

Instantly share code, notes, and snippets.

@akahn
Forked from joshuaclayton/gist:216960
Created October 23, 2009 15:12
Show Gist options
  • Save akahn/216963 to your computer and use it in GitHub Desktop.
Save akahn/216963 to your computer and use it in GitHub Desktop.
module Ahoy
def self.included(base)
base.public_instance_methods.select {|m| m.to_s =~ /ar/ }.each do |method_name|
base.class_eval("alias #{method_name.gsub("ar", "arrr")} #{method_name}")
end
end
end
class String
include Ahoy
end
"foo".starrrt_with? "f"
# => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment