aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-10-23 19:41:48 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-10-23 19:42:36 -0200
commit2fd0c7ac30d81976d48dc691de7b7f4d23bd906a (patch)
tree664e3b81aec4c093f9fe701d7faf84d094a5438c /Rakefile
parentec3ad30606a9e46715c7bbbc98ce911d42dbb5ee (diff)
downloadrails-2fd0c7ac30d81976d48dc691de7b7f4d23bd906a.tar.gz
rails-2fd0c7ac30d81976d48dc691de7b7f4d23bd906a.tar.bz2
rails-2fd0c7ac30d81976d48dc691de7b7f4d23bd906a.zip
Fix the install task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Rakefile b/Rakefile
index 08473ba216..07d44fc94b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -36,15 +36,7 @@ task :smoke do
end
desc "Install gems for all projects."
-task :install => :build do
- version = File.read("RAILS_VERSION").strip
- (PROJECTS - ["railties"]).each do |project|
- puts "INSTALLING #{project}"
- system("gem install #{project}/pkg/#{project}-#{version}.gem --local --no-ri --no-rdoc")
- end
- system("gem install railties/pkg/railties-#{version}.gem --local --no-ri --no-rdoc")
- system("gem install pkg/rails-#{version}.gem --local --no-ri --no-rdoc")
-end
+task :install => "all:install"
desc "Generate documentation for the Rails framework"
if ENV['EDGE']