Skip to content

Instantly share code, notes, and snippets.

@joshuaclayton
Created October 23, 2009 15:06
Show Gist options
  • Save joshuaclayton/216960 to your computer and use it in GitHub Desktop.
Save joshuaclayton/216960 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment