Skip to content

Instantly share code, notes, and snippets.

@codespore
Created May 2, 2011 15:07
Show Gist options
  • Save codespore/951742 to your computer and use it in GitHub Desktop.
Save codespore/951742 to your computer and use it in GitHub Desktop.
my_gem.rb file store in lib/my_gem.rb
require 'my_gem/core_ext'
module MyGem
module Whateva
extend ActiveSupport::Concern
included do
puts "Woohoo!"
end
module ClassMethods
def cm
"Class Methods"
end
end
module InstanceMethods
def im
"Instance Methods"
end
end
end
end
ActiveRecord::Base.send :include, MyGem::Whateva
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment