lib/ambient.rb in ambient-xcode-0.5.1 vs lib/ambient.rb in ambient-xcode-0.6.0

- old
+ new

@@ -6,10 +6,11 @@ end end require_relative 'project_helper' require_relative 'capabilities_helper' +require_relative 'plist_helper' require_relative 'dsl' module Ambient extend self Ambient::ROOT = File.expand_path('.', File.dirname(__FILE__)) @@ -149,10 +150,10 @@ end end end def run_ambientfile(filename) - puts "Reading settings from #{filename}" + puts "# Reading settings from #{filename}" ambient = File.join(Dir.pwd, filename) raise "#{filename} not found in current directory." unless File.exists?(ambient) load ambient end end