1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Revert "The application generator generates public/humans.txt with some basic data". I dont consider this something most people is going to want most of the time. If you want to add it in your own app, knock yourself out. But it doesnt belong in Rails imo

This commit is contained in:
David Heinemeier Hansson 2012-08-07 11:17:50 -05:00
parent 46b8bceedd
commit fb883318c8
3 changed files with 0 additions and 14 deletions

View file

@ -31,8 +31,6 @@
* Load all environments available in `config.paths["config/environments"]`. *Piotr Sarnacki*
* The application generator generates `public/humans.txt` with some basic data. *Paul Campbell*
* Add `config.queue_consumer` to allow the default consumer to be configurable. *Carlos Antonio da Silva*
* Add Rails.queue as an interface with a default implementation that consumes jobs in a separate thread. *Yehuda Katz*

View file

@ -1,7 +0,0 @@
# See more about this file at: http://humanstxt.org/
# For format suggestions, see: http://humanstxt.org/Standard.html
/* TEAM */
/* APP */
Name: <%= app_const_base %>
Software: Ruby on Rails

View file

@ -377,11 +377,6 @@ class AppGeneratorTest < Rails::Generators::TestCase
assert_no_match(/run bundle install/, output)
end
def test_humans_txt_file
run_generator [File.join(destination_root, 'things-43')]
assert_file "things-43/public/humans.txt", /Name: Things43/, /Software: Ruby on Rails/
end
protected
def action(*args, &block)