diff options
author | takiy33 <takiy33@gmail.com> | 2015-06-01 22:26:22 +0900 |
---|---|---|
committer | takiy33 <takiy33@gmail.com> | 2015-06-01 22:26:22 +0900 |
commit | c7eba12f923feebf3dd8992057675b1089a6eee7 (patch) | |
tree | c32608db1654614db7e57c3f7a16a0e311b7b615 | |
parent | 2db8414102d1ccbaf2f293e183422c0801d4bccd (diff) | |
download | rails-c7eba12f923feebf3dd8992057675b1089a6eee7.tar.gz rails-c7eba12f923feebf3dd8992057675b1089a6eee7.tar.bz2 rails-c7eba12f923feebf3dd8992057675b1089a6eee7.zip |
Use --no-document option instead of --no-rdoc and --no-ri option
-rw-r--r-- | install.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.rb b/install.rb index 96e4153165..933e5ee9a2 100644 --- a/install.rb +++ b/install.rb @@ -7,10 +7,10 @@ end %w( activesupport activemodel activerecord actionpack actionview actionmailer railties activejob ).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` + `cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --no-document && rm #{framework}-#{version}.gem` end puts "Installing rails..." `gem build rails.gemspec` -`gem install rails-#{version}.gem --no-ri --no-rdoc ` +`gem install rails-#{version}.gem --no-document ` `rm rails-#{version}.gem` |