diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-03-25 15:35:06 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-03-25 15:35:06 -0300 |
commit | ce0df82057ac31df0e620cf4a303d3428aa93020 (patch) | |
tree | fbb00879e195b20f6d1967a15f0e523e74d86408 /Rakefile | |
parent | ade741e113928b6ee4b376ee5d60e6813ecc35c4 (diff) | |
download | rails-ce0df82057ac31df0e620cf4a303d3428aa93020.tar.gz rails-ce0df82057ac31df0e620cf4a303d3428aa93020.tar.bz2 rails-ce0df82057ac31df0e620cf4a303d3428aa93020.zip |
Fix the update_versions release task
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 28 |
1 files changed, 1 insertions, 27 deletions
@@ -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: |