Skip to content

Commit

Permalink
Print messages when files are rendered.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Jul 22, 2009
1 parent af985a3 commit 73d38a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ecstatic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ Gem::Specification.new do |s|
"README",
"Rakefile",
"VERSION",
"YUI-LICENSE",
"bin/ecstatic",
"ecstatic.gemspec",
"lib/ecstatic.rb",
"samplesite/README",
"samplesite/Rakefile",
"samplesite/events.rbtxt",
"samplesite/events.yaml",
"samplesite/files/Ukulele.jpg",
"samplesite/files/css/base-min.css",
"samplesite/files/css/print.css",
"samplesite/files/css/reset-fonts-grids.css",
"samplesite/files/css/screen.css",
"samplesite/index.txt",
"samplesite/models/models.rb",
Expand Down
1 change: 1 addition & 0 deletions lib/ecstatic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def tasks
file dest => ([page.templatefile, page.layoutfile, self.navfile] + page.datafiles) do
output = page.render
File.open(dest, 'w').write(output)
$stderr.puts "rendered #{dest}"
end
end

Expand Down

0 comments on commit 73d38a8

Please sign in to comment.