aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2017-07-22 17:49:40 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2017-07-22 21:17:25 +0200
commit1e7acf844ba04cb4abf02737ee8bebb2ecce6012 (patch)
treec4e530b6c1ca3fa404c51667c734007006f98448 /Rakefile
parentc1972c264074211fe77cd61cc06bf04ddadf5277 (diff)
downloadrails-1e7acf844ba04cb4abf02737ee8bebb2ecce6012.tar.gz
rails-1e7acf844ba04cb4abf02737ee8bebb2ecce6012.tar.bz2
rails-1e7acf844ba04cb4abf02737ee8bebb2ecce6012.zip
Add task to verify a release.
Basically revises the release flow to: * Update the version in RAILS_VERSION + rake changelog:header * Run rake all:verify (click around in the booted app) * If that checks out, run rake release.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index ae269fbce7..1421851900 100644
--- a/Rakefile
+++ b/Rakefile
@@ -7,6 +7,9 @@ require "railties/lib/rails/api/task"
desc "Build gem files for all projects"
task build: "all:build"
+desc "Build, install and verify the gem files in a generated Rails app."
+task verify: "all:verify"
+
desc "Prepare the release"
task prep_release: "all:prep_release"