class ActiveSupport::ConfigurationFile

def read(content_path)

def read(content_path)
  require "yaml"
  require "erb"
  File.read(content_path).tap do |content|
    if content.include?("\u00A0")
      warn "#{content_path} contains invisible non-breaking spaces, you may want to remove those"
    end
  end
end