1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

actionview should be able to install using install.rb [ci skip]

This commit is contained in:
Arun Agrawal 2013-07-07 11:07:32 +02:00
parent 070cff713e
commit e80844505a

View file

@ -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