Last active
August 29, 2015 13:56
-
-
Save mmagm/9324880 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
require 'devise' | |
class TestToken | |
def self.token | |
@token ||= Devise.friendly_token | |
end | |
end | |
class TestToken2 < TestToken | |
end | |
puts TestToken.token | |
puts TestToken2.token | |
class TestToken | |
def self.token | |
@@token ||= Devise.friendly_token | |
end | |
end | |
class TestToken2 < TestToken | |
end | |
puts TestToken.token | |
puts TestToken2.token |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment