aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-06 19:40:54 +0200
committerXavier Noria <fxn@hashref.com>2016-08-06 19:40:54 +0200
commit60b67d76dc1d98e4269aac7705e9d8323eb42942 (patch)
tree166fac788d5e371388dce2a7b7f227993601906d /Rakefile
parent1607ee299d15c133b2b63dcfc840eddfba7e525b (diff)
downloadrails-60b67d76dc1d98e4269aac7705e9d8323eb42942.tar.gz
rails-60b67d76dc1d98e4269aac7705e9d8323eb42942.tar.bz2
rails-60b67d76dc1d98e4269aac7705e9d8323eb42942.zip
modernizes hash syntax in the rest of the project
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Rakefile b/Rakefile
index 02e9e5997c..3bc4cd19fb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -5,16 +5,16 @@ require "tasks/release"
require "railties/lib/rails/api/task"
desc "Build gem files for all projects"
-task :build => "all:build"
+task build: "all:build"
desc "Prepare the release"
-task :prep_release => "all:prep_release"
+task prep_release: "all:prep_release"
desc "Release all gems to rubygems and create a tag"
-task :release => "all:release"
+task release: "all:release"
desc "Run all tests by default"
-task :default => %w(test test:isolated)
+task default: %w(test test:isolated)
%w(test test:isolated package gem).each do |task_name|
desc "Run #{task_name} task for all projects"
@@ -40,7 +40,7 @@ task :smoke do
end
desc "Install gems for all projects."
-task :install => "all:install"
+task install: "all:install"
desc "Generate documentation for the Rails framework"
if ENV["EDGE"]
@@ -50,7 +50,7 @@ else
end
desc "Bump all versions to match RAILS_VERSION"
-task :update_versions => "all:update_versions"
+task update_versions: "all:update_versions"
# We have a webhook configured in GitHub that gets invoked after pushes.
# This hook triggers the following tasks: