aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-03-25 15:35:06 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-03-25 15:35:06 -0300
commitce0df82057ac31df0e620cf4a303d3428aa93020 (patch)
treefbb00879e195b20f6d1967a15f0e523e74d86408 /Rakefile
parentade741e113928b6ee4b376ee5d60e6813ecc35c4 (diff)
downloadrails-ce0df82057ac31df0e620cf4a303d3428aa93020.tar.gz
rails-ce0df82057ac31df0e620cf4a303d3428aa93020.tar.bz2
rails-ce0df82057ac31df0e620cf4a303d3428aa93020.zip
Fix the update_versions release task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile28
1 files changed, 1 insertions, 27 deletions
diff --git a/Rakefile b/Rakefile
index 5585280589..aae59b8ecc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -46,33 +46,7 @@ else
end
desc 'Bump all versions to match version.rb'
-task :update_versions do
- require File.dirname(__FILE__) + "/version"
-
- File.open("RAILS_VERSION", "w") do |f|
- f.puts Rails::VERSION::STRING
- end
-
- constants = {
- "activesupport" => "ActiveSupport",
- "activemodel" => "ActiveModel",
- "actionpack" => "ActionPack",
- "actionview" => "ActionView",
- "actionmailer" => "ActionMailer",
- "activerecord" => "ActiveRecord",
- "railties" => "Rails"
- }
-
- version_file = File.read("version.rb")
-
- PROJECTS.each do |project|
- Dir["#{project}/lib/*/gem_version.rb"].each do |file|
- File.open(file, "w") do |f|
- f.write version_file.gsub(/Rails/, constants[project])
- end
- end
- end
-end
+task :update_versions => "all:update_versions"
# We have a webhook configured in GitHub that gets invoked after pushes.
# This hook triggers the following tasks: