Created
June 23, 2009 09:27
-
-
Save ismasan/134454 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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