method
preprocess
v5.2.3 -
Show latest stable
- Class:
Rails::Secrets
preprocess(path)private
No documentation available.
# File railties/lib/rails/secrets.rb, line 79
def preprocess(path)
if path.end_with?(".enc")
decrypt(IO.binread(path))
else
IO.read(path)
end
end