Skip to content

Instantly share code, notes, and snippets.

@ratnikov
Forked from DCarper/inviter.rb
Created January 19, 2011 22:04
Show Gist options
  • Save ratnikov/786979 to your computer and use it in GitHub Desktop.
Save ratnikov/786979 to your computer and use it in GitHub Desktop.
module Invite
module Inviter
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
attr_reader :invite_block
def acts_as_inviter(&block)
@invite_block = block
end
end
def approve!(user)
self.class.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