Module: Party::Boy

Defined in:
lib/party_boy.rb

Defined Under Namespace

Modules: ClassMethods, FollowableInstanceMethods, FriendlyInstanceMethods, RelateableInstanceMethods Classes: IdentityTheftError, StalkerError, TryingTooHardError

Class Method Summary collapse

Class Method Details

.included(klazz) ⇒ Object



8
9
10
11
12
13
# File 'lib/party_boy.rb', line 8

def self.included(klazz)
	klazz.extend(Party::Boy::ClassMethods)
	klazz.class_eval do 
		include Party::Boy::RelateableInstanceMethods
	end
end