| Age | Commit message (Collapse) | Author |
|
* That way, multiple lookups for the same file always return the same object.
https://github.com/rubygems/rubygems/commit/50a431b6db
|
|
Hash
* It's accessed concurrently, notably when installing a gem with a C extension.
https://github.com/rubygems/rubygems/commit/543294d7dd
|
|
current style
https://github.com/rubygems/rubygems/commit/df7c0e4223
|
|
https://github.com/rubygems/rubygems/commit/1b9ab33083
|
|
https://github.com/rubygems/rubygems/commit/1b3154f905
|
|
https://github.com/rubygems/rubygems/commit/82f0d4ca69
|
|
available
https://github.com/rubygems/rubygems/commit/471239f1fa
|
|
https://github.com/rubygems/rubygems/commit/ac4596aace
|
|
Since it works on jruby.
https://github.com/rubygems/rubygems/commit/5229e00df4
|
|
https://github.com/rubygems/rubygems/commit/f2dbf242ea
|
|
for example:
```
class C;def initialize(pat);@pat=pat;end;def re;/#{@pat}/o;end;end
C.new('1').re #=> /1/
C.new('2').re #=> /1/
```
|
|
Reported by chucke (Tiago Cardoso).
Patch by jeremyevans0 (Jeremy Evans).
[Bug #14612]
|
|
|
|
Suffix needs a dot and should match the end of string.
|
|
Unescaped dot does not mean a suffix.
|
|
|
|
|
|
Fixes [Ruby Bug 13907]
|
|
RubyVM is specific to CRuby and not supported on JRuby. This is
the equivalent operation.
|
|
Fixes [Bug #13142]
|
|
Every image in the rdoc.css that use url has the wrong one. They end up pointing to `css/images/zoom.png` instead of `images/zoom.png`.
Just open this page https://ruby.github.io/rdoc/RDoc/CodeObject.html on chrome and you can see in the console the spam of the failed GET queries.
This fixes it.
https://github.com/ruby/rdoc/commit/daf36f9894
|
|
https://github.com/ruby/rdoc/commit/17df871ee
|
|
RDoc::Servlet#documentation_page replaces "/" in URL with "::" for class
or module but it's also used for the replaced name on text pages. This
causes a bug when text pages are in nesting directory.
This commit fixes #615.
https://github.com/ruby/rdoc/commit/d73b915b1e
|
|
RDoc::Text#normalize_comment that is included RDoc::Comment always
remove Ruby style comment indicator "#" and C style comment indicator
"/**/", but should check language and remove only the language's comment
indicator.
https://github.com/ruby/rdoc/commit/ca68ba1e73
|
|
https://github.com/ruby/rdoc/commit/3fb03bf399
|
|
|
|
|
|
`Dir.pwd` may differ from the source path. Test directories and
files should be resolved from test file paths.
https://github.com/rubygems/rubygems/commit/e18e7c81b4
|
|
* lib/net/http/header.rb: show the caller's location instead of
the current lines.
|
|
This was the historical behavior, it was modified unintentionally
by 097c3e9cbbf23718371f08c24b2d2297b039f63f, which started storing
these flags in a different global variable.
Also, include the incflags when logging, and document that the
method modifies $INCFLAGS.
Fixes [Bug #10651]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Without binmode strings with incompatible encoding can't be written in
the file. This is very common in applications that log user provided
parameters.
We need to allow changing the binnary mode because right now it is impossible to use
the built-in log rotation feature when you provide a File object to the
LogDevice, and if you provide a filename you can't have binmode.
https://github.com/ruby/logger/commit/9114b3ac7e
|
|
This should allow reopen to work. Requested in ruby issue #14595.
https://github.com/ruby/logger/commit/bd367aff12
|
|
https://github.com/ruby/logger/commit/2dc832e901
|
|
https://github.com/ruby/logger/commit/1e2aab4bea
|
|
https://github.com/ruby/logger/commit/1335a71d98
|
|
https://github.com/ruby/logger/commit/255a51dc10
|
|
https://github.com/ruby/logger/commit/f10ce9fff2
|
|
https://github.com/ruby/logger/commit/ae4c6dfcbb
|
|
https://github.com/ruby/logger/commit/b4b3caae40
|
|
Since it uses `&.`, it can't be used on older rubies
https://github.com/ruby/logger/commit/b872f90ab9
|
|
https://github.com/ruby/logger/commit/eb5ac229a5
|
|
https://github.com/ruby/logger/commit/9a3be8650f
|
|
When input `"` or `/` with simple-prompt,
Before:
`"` or `/`
(prompt disappeared and indent is changed)
After:
`"> "` or `/> /`
(indent is unchanged since `>> `)
|