Skip to content

Instantly share code, notes, and snippets.

@ismasan
Created June 23, 2009 09:27
Show Gist options
  • Save ismasan/134454 to your computer and use it in GitHub Desktop.
Save ismasan/134454 to your computer and use it in GitHub Desktop.
# Common pattern for including instance and class level modules
module SomeModule
def self.included(my_class)
my_class.extend ClassMethods
end
module ClassMethods
def some_class_method(*args)
# do something at class level
puts args.inspect
end
end
# these are instance methods
#
def some_instance_method(*args)
# do something at instance level
puts args.inspect
end
end
class MyGreatClass
include SomeModule
# Now I can use the included class methods
some_class_method 'Hello!'
end
# And instances methods
MyGreatClass.new.some_instance_method('Blah')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment