class ActiveSupport::EncryptedConfiguration

def read

Reads the file and returns the decrypted content. See EncryptedFile#read.
def read
  super
rescue ActiveSupport::EncryptedFile::MissingContentError
  # Allow a config to be started without a file present
  ""
end