lib/xcake/command/make.rb in xcake-0.6.20 vs lib/xcake/command/make.rb in xcake-0.6.21
- old
+ new
@@ -9,10 +9,10 @@
unless File.exist?(file_path)
raise Xcake::Informative, "Couldn't find Cakefile"
end
- puts 'Reading Cakefile...'
+ EventHooks.run_hook :before_cakefile_read
file_contents = File.read(file_path)
project = Project.new
project.instance_eval(file_contents, file_path)