Methods
Class Public methods
new(content_path)
📝 Source code
# File activesupport/lib/active_support/encrypted_configuration.rb, line 37
def initialize(content_path)
super "Invalid YAML in '#{content_path}'."
end
🔎 See on GitHub
Instance Public methods
message()
📝 Source code
# File activesupport/lib/active_support/encrypted_configuration.rb, line 41
def message
cause.is_a?(Psych::SyntaxError) ? "#{super}\n\n #{cause.message}" : super
end
🔎 See on GitHub