Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Created July 31, 2013 22:49
Show Gist options
  • Save barnes7td/6126921 to your computer and use it in GitHub Desktop.
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.
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