Created
November 22, 2016 16:42
-
-
Save apanzerj/fd80baac4b3947b822358b4c429ef2db 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
# Trying to do app.get and getting dumb complaints from rails about the secret. Fuck off. | |
module Rails | |
class Application < Engine | |
def validate_secret_key_config! | |
true | |
end | |
end | |
end | |
module ActiveSupport | |
class LegacyKeyGenerator | |
def ensure_secret_secure(*args) | |
true | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment