Method: ActiveSupport::EncryptedConfiguration#read

Defined in:
activesupport/lib/active_support/encrypted_configuration.rb

#readObject

Reads the file and returns the decrypted content. See EncryptedFile#read.



62
63
64
65
66
67
# File 'activesupport/lib/active_support/encrypted_configuration.rb', line 62

def read
  super
rescue ActiveSupport::EncryptedFile::MissingContentError
  # Allow a config to be started without a file present
  ""
end