aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-07-13 02:12:00 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-07-13 02:12:00 +0000
commitf29ce1f35670866cb86faedeabb28a33215a143f (patch)
tree5d561e22accb212f6b50250cffa77eacce967a59 /railties/Rakefile
parentcb0f8fda9652c4d24d04693bdb82cecd3b067e5c (diff)
downloadrails-f29ce1f35670866cb86faedeabb28a33215a143f.tar.gz
rails-f29ce1f35670866cb86faedeabb28a33215a143f.tar.bz2
rails-f29ce1f35670866cb86faedeabb28a33215a143f.zip
r3023@asus: jeremy | 2005-07-12 23:43:39 -0700
Remove superfluous inherited override in Dependencies. r3024@asus: jeremy | 2005-07-12 23:54:28 -0700 Make test the default railties rake target. r3025@asus: jeremy | 2005-07-12 23:55:27 -0700 Encapsulate dispatch call in dispatcher test. r3026@asus: jeremy | 2005-07-12 23:56:14 -0700 Expand dispatcher mock to match full method signature for process. r3027@asus: jeremy | 2005-07-12 23:57:24 -0700 Look for app-specific generators in RAILS_ROOT/generators instead of RAILS_ROOT/script/generators. r3028@asus: jeremy | 2005-07-13 00:00:47 -0700 Update changelog. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1819 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 8492666f87..94cc85a23a 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -19,6 +19,16 @@ RUBY_FORGE_PROJECT = "rails"
RUBY_FORGE_USER = "webster132"
+desc "Default Task"
+task :default => :test
+
+Rake::TestTask.new do |t|
+ t.libs << 'test'
+ t.pattern = 'test/*_test.rb'
+ t.verbose = true
+end
+
+
BASE_DIRS = %w( app config/environments components db doc log lib public script test vendor )
APP_DIRS = %w( apis models controllers helpers views views/layouts )
PUBLIC_DIRS = %w( images javascripts stylesheets )
@@ -31,9 +41,6 @@ BIN_FILES = %w( generate destroy breakpointer console server update runner pr
VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport actionwebservice railties )
-desc "Default Task"
-task :default => [ :fresh_rails ]
-
desc "Generates a fresh Rails package with documentation"
task :fresh_rails => [ :clean, :make_dir_structure, :initialize_file_stubs, :copy_vendor_libraries, :copy_ties_content, :generate_documentation ]