Ruby 1.9.3-p385 is released
ruby-lang.org
Ruby 1.9.3-p385 is released
1–8 of 8 posts
Re: Ruby 1.9.3-p385 is released
#2 echo "--no-ri --no-rdoc" >> ~/.gemrc
install every gem much faster, avoid rdoc vulnerabilities. Since gem installation can run arbitrary code, I am suspicious of rdoc xss vulnerabilities being a cause for concern (if you are not running a publicly-accessible gem documentation site...)Re: Ruby 1.9.3-p385 is released
#3echo "--no-ri --no-rdoc" >> ~/.gemrc install every gem much faster, avoid rdoc vulnerabilities. Since gem installation can run arbitrary code, I am suspicious of rdoc xss vulnerabilities being a cause for concern (if you are not running a publicly-accessible gem documentation site...)
Re: Ruby 1.9.3-p385 is released
#4echo "--no-ri --no-rdoc" >> ~/.gemrc install every gem much faster, avoid rdoc vulnerabilities. Since gem installation can run arbitrary code, I am suspicious of rdoc xss vulnerabilities being a cause for concern (if you are not running a publicly-accessible gem documentation site...)
This will run these options for every gem command though. Better restrict it to install and update.
Re: Ruby 1.9.3-p385 is released
#5echo "--no-ri --no-rdoc" >> ~/.gemrc install every gem much faster, avoid rdoc vulnerabilities. Since gem installation can run arbitrary code, I am suspicious of rdoc xss vulnerabilities being a cause for concern (if you are not running a publicly-accessible gem documentation site...)
This will run these options for every gem command though. Better restrict it to install and update.
install: --no-rdoc --no-ri
update: --no-rdoc --no-riRe: Ruby 1.9.3-p385 is released
#6Earlier quoted context omitted.
This will run these options for every gem command though. Better restrict it to install and update.
Is it a problem that this gets passed to every gem command?
Re: Ruby 1.9.3-p385 is released
#7Earlier quoted context omitted.
This will run these options for every gem command though. Better restrict it to install and update.
Like so: install: --no-rdoc --no-ri update: --no-rdoc --no-ri
Re: Ruby 1.9.3-p385 is released
#8echo "--no-ri --no-rdoc" >> ~/.gemrc install every gem much faster, avoid rdoc vulnerabilities. Since gem installation can run arbitrary code, I am suspicious of rdoc xss vulnerabilities being a cause for concern (if you are not running a publicly-accessible gem documentation site...)
gem: --no-rdoc --no-ri --both
verbose: true
update_sources: true
sources:
- http://rubygems.org/
backtrace: false
bulk_threshold: 1000
benchmark: false
[1] http://docs.rubygems.org/read/chapter/11