@@ -5,16 +5,16 @@ require "tasks/release"
55require "railties/lib/rails/api/task"
66
77desc "Build gem files for all projects"
8- task : build => "all:build"
8+ task build : "all:build"
99
1010desc "Prepare the release"
11- task : prep_release => "all:prep_release"
11+ task prep_release : "all:prep_release"
1212
1313desc "Release all gems to rubygems and create a tag"
14- task : release => "all:release"
14+ task release : "all:release"
1515
1616desc "Run all tests by default"
17- task : default => %w( test test:isolated )
17+ task default : %w( test test:isolated )
1818
1919%w( test test:isolated package gem ) . each do |task_name |
2020 desc "Run #{ task_name } task for all projects"
@@ -40,7 +40,7 @@ task :smoke do
4040end
4141
4242desc "Install gems for all projects."
43- task : install => "all:install"
43+ task install : "all:install"
4444
4545desc "Generate documentation for the Rails framework"
4646if ENV [ "EDGE" ]
5050end
5151
5252desc "Bump all versions to match RAILS_VERSION"
53- task : update_versions => "all:update_versions"
53+ task update_versions : "all:update_versions"
5454
5555# We have a webhook configured in GitHub that gets invoked after pushes.
5656# This hook triggers the following tasks:
0 commit comments