if manifest_file not exists, discover :all

This commit is contained in:
tka 2011-12-20 00:18:44 +08:00 committed by tka lu
parent 986714a013
commit b263bfdcaf

View File

@ -141,11 +141,16 @@ module Compass
# evaluated in a Manifest instance context
def parse(manifest_file)
with_manifest(manifest_file) do
if File.exists?(manifest_file)
open(manifest_file) do |f|
eval(f.read, instance_binding, manifest_file)
end
else
eval("discover :all", instance_binding, manifest_file)
end
end
end
def instance_binding
binding