aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-01-06 00:42:57 +0100
committerYves Senn <yves.senn@gmail.com>2013-01-10 17:09:06 +0100
commitce8e3d307280cb07604b45523c1733a71e97770d (patch)
treee30f2ee0dc5157bb5e2c649f06e3c9e21aa34edd /railties/lib/rails/generators
parent3e1ed7818ba1abbc331c568327c6c0d64702985e (diff)
downloadrails-ce8e3d307280cb07604b45523c1733a71e97770d.tar.gz
rails-ce8e3d307280cb07604b45523c1733a71e97770d.tar.bz2
rails-ce8e3d307280cb07604b45523c1733a71e97770d.zip
remove performance tests from the default stack
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r--railties/lib/rails/generators/rails/app/app_generator.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb
index 784c97aee0..e22be40381 100644
--- a/railties/lib/rails/generators/rails/app/app_generator.rb
+++ b/railties/lib/rails/generators/rails/app/app_generator.rb
@@ -114,7 +114,6 @@ module Rails
empty_directory_with_keep_file 'test/helpers'
empty_directory_with_keep_file 'test/integration'
- template 'test/performance/browsing_test.rb'
template 'test/test_helper.rb'
end
@@ -141,7 +140,7 @@ module Rails
# We need to store the RAILS_DEV_PATH in a constant, otherwise the path
# can change in Ruby 1.8.7 when we FileUtils.cd.
RAILS_DEV_PATH = File.expand_path("../../../../../..", File.dirname(__FILE__))
- RESERVED_NAMES = %w[application destroy benchmarker profiler plugin runner test]
+ RESERVED_NAMES = %w[application destroy plugin runner test]
class AppGenerator < AppBase # :nodoc:
add_shared_options_for "application"