Added an empty favicon.ico file to the public directory of new applications...

Added an empty favicon.ico file to the public directory of new applications (so the logs are not spammed by its absence)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@861 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 911614df
*SVN*
* Added an empty favicon.ico file to the public directory of new applications (so the logs are not spammed by its absence)
* Fixed that scaffold generator new template should use local variable instead of instance variable #778 [Dan Peterson]
* Allow unit tests to run on a remote server for PostgreSQL #781 [adamm@galacticasoftware.com]
......
......@@ -20,7 +20,7 @@ PUBLIC_DIRS = %w( images javascripts stylesheets )
TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test )
LOG_FILES = %w( server.log development.log test.log production.log )
HTML_FILES = %w( 404.html 500.html index.html )
HTML_FILES = %w( 404.html 500.html index.html favicon.ico )
BIN_FILES = %w( generate destroy breakpointer console server update )
VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )
......@@ -267,4 +267,4 @@ desc "Publish the API documentation"
task :pgem => [:gem] do
Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
`ssh davidhh@comox.textdrive.com './gemupdate.sh'`
end
end
\ No newline at end of file
......@@ -65,6 +65,8 @@ def manifest
%w(404 500 index).each do |file|
m.template "html/#{file}.html", "public/#{file}.html"
end
m.template "html/favicon.ico", "public/favicon.ico"
# Docs
m.file "doc/README_FOR_APP", "doc/README_FOR_APP"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册