diff options
Diffstat (limited to 'railties/fresh_rakefile')
-rwxr-xr-x | railties/fresh_rakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile index e9f3afd7ae..437c999522 100755 --- a/railties/fresh_rakefile +++ b/railties/fresh_rakefile @@ -63,11 +63,11 @@ Rake::RDocTask.new("apidoc") { |rdoc| desc "Report code statistics (KLOCs, etc) from the application" task :stats do CodeStatistics.new( - ["Controllers", "app/controllers"], ["Helpers", "app/helpers"], + ["Controllers", "app/controllers"], + ["Functionals", "test/functional"], ["Models", "app/models"], - ["Units", "test/unit"], - ["Functionals", "test/functional"] + ["Units", "test/unit"] ).to_s end @@ -103,4 +103,4 @@ task :purge_test_database do `dropdb -U #{ActiveRecord::Base.configurations["test"]["username"]} #{ActiveRecord::Base.configurations["test"]["database"]}` `createdb -U #{ActiveRecord::Base.configurations["test"]["username"]} #{ActiveRecord::Base.configurations["test"]["database"]}` end -end
\ No newline at end of file +end |