mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rdoc/ri/driver.rb (cache_file_for): shoudn't use `:' in filename.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15340 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
84fe384383
commit
087801b64b
2 changed files with 5 additions and 1 deletions
|
@ -249,7 +249,7 @@ Options may also be set in the 'RI' environment variable.
|
|||
end
|
||||
|
||||
def cache_file_for(klassname)
|
||||
File.join cache_file_path, klassname
|
||||
File.join cache_file_path, klassname.gsub(/:+/, "-")
|
||||
end
|
||||
|
||||
def cache_file_path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue