aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-07-07 11:36:28 +0200
committerArun Agrawal <arunagw@gmail.com>2013-07-09 00:10:15 +0200
commit0d534b8aae39d2d3903bd5298d1fa3577e0f1d9e (patch)
tree53b5e78a799db313934e2cbffed7fdd896534f68 /Rakefile
parente80844505a649192402bbedb450a3da7f29728c0 (diff)
downloadrails-0d534b8aae39d2d3903bd5298d1fa3577e0f1d9e.tar.gz
rails-0d534b8aae39d2d3903bd5298d1fa3577e0f1d9e.tar.bz2
rails-0d534b8aae39d2d3903bd5298d1fa3577e0f1d9e.zip
Fixed broken rake task for update_version [ci skip]
Also added actionview to update version rake task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 242bd9a930..08473ba216 100644
--- a/Rakefile
+++ b/Rakefile
@@ -58,13 +58,14 @@ task :update_versions do
require File.dirname(__FILE__) + "/version"
File.open("RAILS_VERSION", "w") do |f|
- f.puts Rails.version
+ f.puts Rails::VERSION::STRING
end
constants = {
"activesupport" => "ActiveSupport",
"activemodel" => "ActiveModel",
"actionpack" => "ActionPack",
+ "actionview" => "ActionView",
"actionmailer" => "ActionMailer",
"activerecord" => "ActiveRecord",
"railties" => "Rails"