# File lib/compass/configuration/serialization.rb, line 10 def _parse(config_file) unless File.readable?(config_file) raise Compass::Error, "Configuration file, #{config_file}, not found or not readable." end open(config_file) do |f| parse_string(f.read, config_file) end end