Skip to content

Instantly share code, notes, and snippets.

@DCarper
Created January 19, 2011 21:14
Show Gist options
  • Save DCarper/786875 to your computer and use it in GitHub Desktop.
Save DCarper/786875 to your computer and use it in GitHub Desktop.
module Invite
module Inviter
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
attr_accessor :invite_block
def acts_as_inviter(&block)
@@invite_block = block
end
end
def approve!(user)
@@invite_block.call user
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment