root/trunk/vendor/rails/railties/lib/tasks/pre_namespace_aliases.rake @ 58

Revision 58, 1.4 KB (checked in by dema, 7 years ago)

Updating to Rails 1.1.2

Line 
1# clear
2task :clear_logs => "log:clear"
3
4# test
5task :recent          => "test:recent"
6task :test_units      => "test:units"
7task :test_functional => "test:functionals"
8task :test_plugins    => "test:plugins"
9
10
11# doc
12task :appdoc            => "doc:app"
13task :apidoc            => "doc:rails"
14task :plugindoc         => "doc:plugins"
15task :clobber_plugindoc => "doc:clobber_plugins"
16
17FileList['vendor/plugins/**'].collect { |plugin| File.basename(plugin) }.each do |plugin|
18  task :"#{plugin}_plugindoc" => "doc:plugins:#{plugin}"
19end
20
21
22# rails
23task :freeze_gems        => "rails:freeze:gems"
24task :freeze_edge        => "rails:freeze:edge"
25task :unfreeze_rails     => "rails:unfreeze"
26task :add_new_scripts    => "rails:update:scripts"
27task :update_javascripts => "rails:update:javascripts"
28
29
30# db
31task :migrate                 => "db:migrate"
32task :load_fixtures           => "db:fixtures:load"
33
34task :db_schema_dump          => "db:schema:dump"
35task :db_schema_import        => "db:schema:load"
36
37task :db_structure_dump       => "db:structure:dump"
38
39task :purge_test_database     => "db:test:purge"
40task :clone_schema_to_test    => "db:test:clone"
41task :clone_structure_to_test => "db:test:clone_structure"
42task :prepare_test_database   => "db:test:prepare"
43
44task :create_sessions_table   => "db:sessions:create"
45task :drop_sessions_table     => "db:sessions:drop"
46task :purge_sessions_table    => "db:sessions:recreate"
Note: See TracBrowser for help on using the browser.