Created
April 21, 2016 15:09
-
-
Save kirs/8230850dfd2cf9082008f25658e1ec34 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
module Accessible | |
def self.included(base) | |
puts base.respond_to?(:accessible?) | |
end | |
end | |
class My | |
include Accessible | |
def self.accessible? | |
true | |
end | |
end |
davydovanton
commented
Apr 21, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment