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
|
@ -1,3 +1,7 @@
|
|||
Wed Jan 30 14:32:18 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* lib/rdoc/ri/driver.rb (cache_file_for): shoudn't use `:' in filename.
|
||||
|
||||
Wed Jan 30 14:27:19 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* string.c (rb_str_succ): use wrapped character as a carry for
|
||||
|
|
|
@ -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…
Reference in a new issue