diff options
| -rw-r--r-- | Rakefile | 3 | ||||
| -rw-r--r-- | actionview/Rakefile | 1 | ||||
| -rw-r--r-- | install.rb | 2 | 
3 files changed, 3 insertions, 3 deletions
| @@ -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" diff --git a/actionview/Rakefile b/actionview/Rakefile index 1cbd35cda4..25365d3c3d 100644 --- a/actionview/Rakefile +++ b/actionview/Rakefile @@ -1,5 +1,4 @@  require 'rake/testtask' -require 'rake/packagetask'  require 'rubygems/package_task'  desc "Default Task" diff --git a/install.rb b/install.rb index 77c3e6048a..bff8fee934 100644 --- a/install.rb +++ b/install.rb @@ -5,7 +5,7 @@ if version.nil?    exit(64)  end -%w( activesupport activemodel activerecord actionpack actionmailer railties ).each do |framework| +%w( activesupport activemodel activerecord actionpack actionview actionmailer railties ).each do |framework|    puts "Installing #{framework}..."    `cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --no-ri --no-rdoc && rm #{framework}-#{version}.gem`  end | 
