Created
July 31, 2013 22:49
-
-
Save barnes7td/6126921 to your computer and use it in GitHub Desktop.
This is an example of how to include both class methods and instance variables by including a module into a class.
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
require 'active_support/concern' | |
module Testable | |
extend ActiveSupport::Concern | |
def instance_puts | |
puts "This is an instance method" | |
end | |
# def self.included(base) | |
# base.extend(ClassMethods) | |
# end | |
included do | |
self.extend(ClassMethods) | |
end | |
module ClassMethods | |
def class_puts | |
puts "This is a class method" | |
end | |
end | |
end | |
class History | |
include Testable | |
end | |
History.new.instance_puts | |
History.class_puts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment