Project

General

Profile

Activity

From 02/10/2016 to 02/16/2016

02/16/2016

09:03 PM Bug #12071: Gem installation fails with 2.3.0 on Cygwin
Note that when compiling 2.2.4, `win32` is entered because there is `mkmf.log`. Panyamin (Benjamin Gueroult)
08:36 PM Bug #12071: Gem installation fails with 2.3.0 on Cygwin
Nobuyoshi Nakada wrote:
> Does `fiddle` get installed and work?
> `win32` requires it.
Well, I've found some sni...
Panyamin (Benjamin Gueroult)
01:32 AM Bug #12071: Gem installation fails with 2.3.0 on Cygwin
Does `fiddle` get installed and work?
`win32` requires it.
nobu (Nobuyoshi Nakada)
05:30 PM Feature #12075: some container#nonempty?
The implementation doesn't have to be the same as the one implemented by ActiveSupport. I think it would be fine to s... rosenfeld (Rodrigo Rosenfeld Rosas)
03:28 PM Feature #12075: some container#nonempty?
Shyouhei Urabe wrote:
> No, the OP wants to detect things that are _not_ empty. This is not what blank? means.
Y...
sawa (Tsuyoshi Sawada)
02:17 PM Feature #12075: some container#nonempty?
No, the OP wants to detect things that are _not_ empty. This is not what blank? means. Also note that blank? in Act... shyouhei (Shyouhei Urabe)
10:02 AM Feature #12075: some container#nonempty?
+1 for bringing blank? and present? to Ruby core. I often use (a || '').empty? checks for not having to depend on Act... rosenfeld (Rodrigo Rosenfeld Rosas)
08:52 AM Feature #12075: some container#nonempty?
That is a use case for Rails' `blank?` (or `present?`).
~~~RUBY
class Object
def blank?
respond_to?(:empt...
sawa (Tsuyoshi Sawada)
08:31 AM Feature #12075: some container#nonempty?
How about "some?".
akr (Akira Tanaka)
08:30 AM Feature #12075: some container#nonempty?
How about `ary.include_something?` ? mrkn (Kenta Murata)
08:08 AM Feature #12075 (Feedback): some container#nonempty?
I sometimes write following code.
```ruby
ary = some_metho_returns_nil_or_empty_container() # nil or "" or [] or ...
naruse (Yui NARUSE)
05:05 PM Feature #10121: Dir.empty?
Woot! Woot!
Thanks to nobu the patch monster and matz!
shevegen (Robert A. Heiler)
08:34 AM Feature #10121 (Closed): Dir.empty?
Applied in changeset r53841.
----------
dir.c: Dir.empty?
* dir.c (rb_dir_s_empty_p): add Dir.empty? method, which ...
nobu (Nobuyoshi Nakada)
02:56 PM Feature #12063: KeyError#receiver and KeyError#name
I made a patch https://github.com/ruby/ruby/pull/1251 ksss (Yuki Kurihara)
01:29 PM Feature #12079 (Rejected): Loosening the condition for refinement
There are a few non-standard ways of calling a method that cannot be used when the relevant method is a refined metho... sawa (Tsuyoshi Sawada)
12:35 PM Feature #11999: MatchData#to_h to get a Hash from named captures
Updated patch (11999-2.diff). sorah (Sorah Fukumori)
11:24 AM Feature #11999: MatchData#to_h to get a Hash from named captures
Discussed at https://bugs.ruby-lang.org/projects/ruby/wiki/DevelopersMeeting20160216Japan with Matz and several commi... sorah (Sorah Fukumori)
12:25 PM Revision cee9c58e (git): fix a typo [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e znz (Kazuhiro NISHIYAMA)
12:25 PM Revision 45aa35cd (git): fix indent [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e znz (Kazuhiro NISHIYAMA)
12:25 PM Revision 0395a51e (git): ChangeLog should be us-ascii [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e znz (Kazuhiro NISHIYAMA)
11:40 AM Bug #12078 (Closed): Segmentation fault in did_you_mean with ruby revision 53608
A segmentation bug occurred when running rspec tests on an app. This first appeared using ruby 2.3.0p0 revision 53290... reggiebatsky (Rob Nichols)
11:33 AM Feature #12077 (Open): Consolidate SSLSocket interface with TCPSocket
Hello,
Is there a reason why `SSLSocket#read` doesn't work the same as `SSLSocket#sysread` and why there is no `SS...
tonci (Tonči Damjanić)
10:10 AM Revision 6a808bda (git): * enc/unicode/case-folding.rb, casefold.h: Used only first element
(rather than all) of target in CaseUnfold_11 array.
(with Kimihito Matsui)
git-svn-id: svn+ssh://ci.ruby-lang.org...
duerst (Martin Dürst)
09:44 AM Feature #12024: Add String.buffer, for creating strings with large capacities
The original proposal #905 was 7 years old. But now we have keyword argument, so adding `capacity:` keyword to `Strin... matz (Yukihiro Matsumoto)
09:43 AM Feature #12076 (Rejected): The 'ditto' operator
Rejected. Adding new keyword is not a good idea, besides `ditto` behavior is not clear.
Matz.
matz (Yukihiro Matsumoto)
08:42 AM Feature #12076: The 'ditto' operator
The example code can be refactored to:
~~~RUBY
case user
when "foo", "bar"
else user = "stranger"
end
puts "w...
sawa (Tsuyoshi Sawada)
08:30 AM Feature #12076 (Rejected): The 'ditto' operator
I like to introduce and propose an idea to use a 'ditto' operator in 'else' or 'elsif' statement,
the ditto operator...
joelbryan (Joel Bryan Juliano)
09:29 AM Bug #9810 (Assigned): Numeric#step behavior with mixed Float, String arguments inconsistent with documentation
naruse (Yui NARUSE)
09:25 AM Bug #11991 (Assigned): `Symbol#match` returns the match position, unlike `String#match` and `Regexp#match`
Considered a bug but for compatibility this shouldn't be backported.
2.4 will introduce incompatibility.
naruse (Yui NARUSE)
09:25 AM Revision 527fa610 (git): numeric.c: fix segfault
* numeric.c (compare_with_zero): fix variable name, rb_cmperr
requires VALUEs but not an ID.
git-svn-id: svn+ssh:/...
nobu (Nobuyoshi Nakada)
08:34 AM Revision 135a171c (git): dir.c: Dir.empty?
* dir.c (rb_dir_s_empty_p): add Dir.empty? method, which tells the
argument is the name of an empty directory. [Fe...
nobu (Nobuyoshi Nakada)
06:54 AM Feature #10720 (Rejected): A proposal for something like: attr_reader :foo? - with the trailing '?' question mark
See #12046.
Matz.
matz (Yukihiro Matsumoto)
06:54 AM Feature #11167 (Rejected): Allow an attr_ variant for query-methods that end with a question mark '?' character, such as: def foo? returning @foo
See #12046.
Matz.
matz (Yukihiro Matsumoto)
06:53 AM Feature #12046 (Rejected): Allow attr_reader :foo? to define instance method foo? for accessing @foo
as a rule, `attr_reader x` creates an instance variable `@x`, but we cannot have `@x?`.
that's the reason, we reject...
matz (Yukihiro Matsumoto)
06:33 AM Feature #11666 (Assigned): IPAddr#private?
The maintainer is knu.
* feature issues
* conflict with private visibility
* “private?” is different from ...
naruse (Yui NARUSE)
02:04 AM Bug #12074 (Closed): [PERF] bm_app_erb.rb slower
Hi I'm noticing a regression on RubyBench for `bm_app_erb.rb`
http://rubybench.org/ruby/ruby/commits?result_type=a...
tgxworld (Guo Xiang Tan)
12:51 AM Revision 9cedfbcb (git): rbinstall.rb: drive letter in without_destdir
* tool/rbinstall.rb (without_destdir): just strip a drive letter
which is prepended by with_destdir.
pointed out ...
nobu (Nobuyoshi Nakada)
12:35 AM Bug #11542: Zlib::DataError: incorrect data check
Tomoyuki Chikanaga wrote:
> Hello, Lingaraj.
>
> It seems that the response contains invalid byte-stream or the c...
peterept (Peter Koch)

02/15/2016

09:16 PM Bug #12071: Gem installation fails with 2.3.0 on Cygwin
Nobuyoshi Nakada wrote:
> How did you install ruby, and did `fiddle` get installed successfully?
I installed with...
Panyamin (Benjamin Gueroult)
02:45 AM Bug #12071 (Feedback): Gem installation fails with 2.3.0 on Cygwin
Since Cygwin does not have its own `resolv.conf` file, it is not correct.
How did you install ruby, and did `fiddle`...
nobu (Nobuyoshi Nakada)
07:42 PM Revision 2708fb6b (git): * insns.def (opt_plus): simply use LONG2NUM() instead of wrongly
complex overflow case.
* insns.def (opt_sub): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53839 b2dd03...
naruse (Yui NARUSE)
05:50 PM Revision 0e5f9aea (git): rbinstall.rb: drive letter in without_destdir
* tool/rbinstall.rb (without_destdir): compare with the destdir
after stripping a drive letter, on dosish platforms...
nobu (Nobuyoshi Nakada)
05:41 PM Revision afc0a5f0 (git): * 2016-02-16
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
05:41 PM Revision 8b019eed (git): parse.y: short circuit by result
* parse.y (parse_ident): short circuit by result, as only
tIDENTIFIER can be a local variable, but tFID and tCONSTA...
nobu (Nobuyoshi Nakada)
06:44 AM Revision fbb51ff4 (git): parse.y: kwarg to method with same name variable
* parse.y (parse_ident): allow keyword arguments just after a
method where the same name local variable is defined....
nobu (Nobuyoshi Nakada)
06:06 AM Revision 5e59be3e (git): parse.y: simplify local ID condition
* parse.y (tokenize_ident, parse_ident): ident in tokenize_ident()
can be a local id only when called from parse_id...
nobu (Nobuyoshi Nakada)
05:43 AM Revision c3554cde (git): * enc/unicode/case-folding.rb: Added debugging option
(with Kimihito Matsui)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
duerst (Martin Dürst)
05:15 AM Revision 49079911 (git): bignum.c: micro optimization
* bignum.c (rb_big_uminus, bigsub_int): use BIGNUM_NEGATE.
* internal.h (BIGNUM_NEGATE): simplify negation.
git-svn...
nobu (Nobuyoshi Nakada)
05:09 AM Revision 174be800 (git): use particlar macros
* bignum.c: use particlar macros for positive/negative conditions.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk...
nobu (Nobuyoshi Nakada)
04:23 AM Revision 73e29d2c (git): win32/resolv.rb: invert the condition
* ext/win32/lib/win32/resolv.rb: invert the condition to return
immediately in the future.
git-svn-id: svn+ssh://c...
nobu (Nobuyoshi Nakada)
03:42 AM Revision 486f3f42 (git): win32/resolv.rb: check pointer size
* ext/win32/lib/win32/resolv.rb: check pointer size first, NT if
it is larger than 4 as Windows 9X are 32-bit mode ...
nobu (Nobuyoshi Nakada)
03:36 AM Bug #12073 (Closed): local variable interferes with keyword arguments
This code causes a syntax error:
~~~ruby
def a(b:)
b
end
a = 1
a b: 9

# !> program.rb:5: syntax error, ...
josh.cheek (Josh Cheek)
03:31 AM Feature #11758: Add keyword assignment syntax
I keep trying to do this, too, and being surprised when it doesn't work. josh.cheek (Josh Cheek)
03:29 AM Revision 0f5a8418 (git): avoid ruby-mode.el bug
* ext/win32/lib/win32/{resolv,resolv9x}.rb: get rid of
ruby-mode.el of Emacs 24.
git-svn-id: svn+ssh://ci.ruby-lan...
nobu (Nobuyoshi Nakada)
03:29 AM Revision a1feed65 (git): * 2016-02-15
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
03:28 AM Revision 2ece5109 (git): split win32/resolv9x.rb
* ext/win32/lib/win32/resolv9x.rb: split code for Windows 9x from
resolv.rb. now it is rarely used.
git-svn-id: s...
nobu (Nobuyoshi Nakada)

02/14/2016

05:26 PM Bug #11834: Backport r53168, r53169 (String#scrub, #encode infection)
r49096, r51353, r53168 and r53169 were backported into `ruby_2_2` branch at r53825. nagachika (Tomoyuki Chikanaga)
05:25 PM Revision 5ad41fa1 (git): merge revision(s) 49096,51353,53168,53169: [Backport #11834]
test_m17n.rb: split test_scrub
* test/ruby/test_m17n.rb (TestM17N#test_scrub): split into some
tests.
...
nagachika (Tomoyuki Chikanaga)
05:23 PM Bug #12070: "wrong argument type nil" when installing any gem with Puppet on Arch Linux
From running `'/usr/bin/gem install --no-rdoc --no-ri --backtrace --debug travis-lint'` in Puppet:
Exception `...
l0b0 (Victor Engmark)
12:12 PM Bug #12070: "wrong argument type nil" when installing any gem with Puppet on Arch Linux
This is easily reproducible by cloning [the repository](https://github.com/l0b0/root) and running `make test`. l0b0 (Victor Engmark)
12:10 PM Bug #12070 (Third Party's Issue): "wrong argument type nil" when installing any gem with Puppet on Arch Linux
Based on [Stack Exchange question](https://unix.stackexchange.com/questions/252937/how-to-install-a-ruby-gem-on-arch-... l0b0 (Victor Engmark)
05:18 PM Feature #11934: A feature to drop dynamics dynamically
I agree with Chris: JRuby + Truffle showed that it is possible to have dynamic features without loosing performance. ... justcolin (Colin Fulton)
04:48 PM Bug #11860: Double splat does not work on empty hash assigned via variable
A similar bug happens when using the double splat operator in the parameter list of a method definition. See #12022. justcolin (Colin Fulton)
04:46 PM Bug #12022: Inconsistent behavior with splatted named arguments
Sorry, I didn't see that issue. The cause is probably the same, but the difference is that #11860 deals with using th... justcolin (Colin Fulton)
03:55 AM Bug #12022: Inconsistent behavior with splatted named arguments
This is a duplicate, or is at least related to #11860. sawa (Tsuyoshi Sawada)
04:39 PM Bug #11932: Ripper.sexp can't parse some files from ruby repository and returns nil
r53411 and r53425 were backported into `ruby_2_2` branch at r53824. nagachika (Tomoyuki Chikanaga)
04:38 PM Revision 145ee4b4 (git): merge revision(s) 53411,53425: [Backport #11932]
* parse.y (regexp): set_yylval_num sets u1, should use nd_tag
instead of nd_state. [ruby-core:72638] [Bug ...
nagachika (Tomoyuki Chikanaga)
03:35 PM Bug #12068: raise overwrites exception cause even if exception is not new
Please don't backport to the stable branches by yourself. The branch maintainers (usa and me) will do.
I fill Back...
nagachika (Tomoyuki Chikanaga)
10:30 AM Bug #12068: raise overwrites exception cause even if exception is not new
May I backport this change to 2.3? Matz? I believe the original behavior was unintentional and should be fixed. headius (Charles Nutter)
10:17 AM Bug #12068: raise overwrites exception cause even if exception is not new
Thanks, nobu! headius (Charles Nutter)
07:19 AM Bug #12068 (Closed): raise overwrites exception cause even if exception is not new
Applied in changeset r53819.
----------
not overwrite cause
* eval.c (setup_exception): set the cause only if it is...
nobu (Nobuyoshi Nakada)
05:12 AM Bug #12068: raise overwrites exception cause even if exception is not new
Yes...the exception inherits current $! only in initialize, and carries it until overwritten. headius (Charles Nutter)
04:21 AM Bug #12068: raise overwrites exception cause even if exception is not new
In JRuby, `cause` is set just in `initialize`?
```
$ jruby -v -e 'raise "a" rescue p RuntimeError.new("b").cause'...
nobu (Nobuyoshi Nakada)
03:17 PM Bug #12072 (Closed): SortedSet#superset? raises NoMethodError if rbtree is installed
If rbtree is installed, the following code doesn't work.
~~~ruby
require "set"
set_a = SortedSet.new([1, 2])
...
rhenium (Kazuki Yamaguchi)
01:30 PM Bug #12071 (Closed): Gem installation fails with 2.3.0 on Cygwin
Hello,
I would like report an issue when installing gem on Cygwin with ruby 2.3.0.
Backtrace is:
~~~
/home/...
Panyamin (Benjamin Gueroult)
11:09 AM Bug #12069 (Closed): [PATCH] document OpenSSL::SSL::SSLContext#setup as MT-unsafe
document OpenSSL::SSL::SSLContext#setup as MT-unsafe
On a cursory inspection, using rb_block_call for extra_chain_...
normalperson (Eric Wong)
08:52 AM Revision 8a180ee4 (git): test_cgi_util.rb: test_cgi_unescapeHTML_invalid
* test/cgi/test_cgi_util.rb (test_cgi_unescapeHTML_invalid): test
for invalid escaped HTML, borrowed from rubyspec....
nobu (Nobuyoshi Nakada)
08:37 AM Revision 65c9555d (git): test_exception.rb: fix commit miss
* test/ruby/test_exception.rb: remove duplicate method. fix
commit miss at r53819.
git-svn-id: svn+ssh://ci.ruby-...
nobu (Nobuyoshi Nakada)
08:32 AM Revision fdcc924f (git): mkmf.rb: Do not modify caller strings
* lib/mkmf.rb (with_{cpp,c,ld}flags): copy caller strings not to
be modified, in append_{cpp,c,ld}flags respectivel...
nobu (Nobuyoshi Nakada)
07:19 AM Revision a7a5bd59 (git): * 2016-02-14
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
07:19 AM Revision e294f4cf (git): not overwrite cause
* eval.c (setup_exception): set the cause only if it is explicitly
given or not set yet. [Bug #12068]
git-svn-id:...
nobu (Nobuyoshi Nakada)
05:51 AM Bug #12035 (Rejected): scanf suspicious results.
From http://ruby-doc.org/stdlib-2.2.4/libdoc/scanf/rdoc/Scanf.html#module-Scanf-label-Conversions
> Matches a none...
nobu (Nobuyoshi Nakada)
04:01 AM Bug #12065 (Rejected): problem with multiplication 2 numbers
hsbt (Hiroshi SHIBATA)

02/13/2016

06:41 PM Feature #12034: RegExp does not respect file encoding directive
Eric Wong wrote:
> I think that is fine as long as the strings are valid.
> Returning invalid strings is the main p...
naruse (Yui NARUSE)
05:13 PM Bug #12022: Inconsistent behavior with splatted named arguments
More details about why errors are not raised in some cases, and wrong errors are raised in other cases:
```ruby
d...
justcolin (Colin Fulton)
04:22 PM Bug #12035: scanf suspicious results.
That is what is so perplexing. The format I used was '%[a] %[b] %[c]'
Please note the explicit spaces between the fo...
PeterCamilleri (Peter Camilleri)
04:15 AM Bug #12035: scanf suspicious results.
Peter Camilleri wrote:
> I think you're missing the point. Of course %s would seem to work in this case.
> My ques...
musgravejw (John Musgrave)
03:58 AM Bug #12035: scanf suspicious results.
I think you're missing the point. Of course %s would seem to work in this case.
My question is about the %\[set\] (...
PeterCamilleri (Peter Camilleri)
12:45 PM Revision f061d403 (git): * hash.c (rb_hash_invert): [DOC] more examples.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53818 b2dd03c8-39d4-4d8f-98ff-823fe69b080e akr (Akira Tanaka)
12:03 PM Bug #12068 (Closed): raise overwrites exception cause even if exception is not new
It appears that `raise` will overwrite the original cause of an exception even when re-raising the same one. I believ... headius (Charles Nutter)
08:31 AM Revision 1ee9cad0 (git): CIDR in no_proxy
* lib/uri/generic.rb (URI::Generic#find_proxy): support CIDR in
no_proxy. [ruby-core:73769] [Feature#12062]
git-s...
nobu (Nobuyoshi Nakada)
08:12 AM Revision 423d0423 (git): no_proxy with whitespaces and leading dots
* lib/uri/generic.rb (find_proxy): exclude white-spaces and allow
for a leading dot in the domain name in no_proxy....
nobu (Nobuyoshi Nakada)
08:12 AM Feature #8317 (Closed): URI: no_proxy with whitespaces and leading dots.
Applied in changeset r53816.
----------
no_proxy with whitespaces and leading dots
* lib/uri/generic.rb (find_proxy...
nobu (Nobuyoshi Nakada)
02:07 AM Feature #8317: URI: no_proxy with whitespaces and leading dots.
Why also semicolon-separated?
```diff
diff --git c/lib/uri/generic.rb w/lib/uri/generic.rb
index aba54c1..f2a2d5...
nobu (Nobuyoshi Nakada)
07:52 AM Revision 1b6684f8 (git): test/uri/test_generic.rb: split test_find_proxy
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
03:10 AM Bug #12066 (Closed): Ruby creates Wrong .Bat files
It has been fixed by [the upstream](https://github.com/rubygems/rubygems/commit/f9232680), and imported to 2.3. nobu (Nobuyoshi Nakada)
02:50 AM Bug #12067 (Closed): [BUG] object allocation during garbage collection phase
nobu (Nobuyoshi Nakada)
02:00 AM Revision 7e06731b (git): * 2016-02-13
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53814 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
02:00 AM Revision 1a222cd3 (git): domainname no_proxy assertions
* test/uri/test_generic.rb (test_find_proxy): assertions for
no_proxy of domainname.
git-svn-id: svn+ssh://ci.ruby...
nobu (Nobuyoshi Nakada)

02/12/2016

09:20 PM Feature #10793: Infrastructure/Release-Management: Sign releases
I'm not against the idea of additionaly signing the releases but,
Alexander E. Fischer wrote:
> Several commonly ...
shyouhei (Shyouhei Urabe)
09:03 PM Feature #12034: RegExp does not respect file encoding directive
Eric Wong <[email protected]> wrote:
> [email protected] wrote:
> > File 0001-string.c-rb_external_str_with_e...
normalperson (Eric Wong)
06:13 PM Feature #11523: optparse short options will match complete options
I believe that:
1. This is what OptParser doing by default. If your code were `opts.on("--irs [OCTAL]", OptionPars...
vo.x (Vit Ondruch)
05:48 PM Bug #12067 (Closed): [BUG] object allocation during garbage collection phase
bin/rails: [BUG] object allocation during garbage collection phase
ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64...
tina (Tina Tran)
12:01 PM Bug #12066 (Closed): Ruby creates Wrong .Bat files
After i downloaded the newest version of Ruby and installed SASS, i tried to run SASS from the command line.
This ga...
businessgamer8 (Kevin Marti)
11:48 AM Bug #12035: scanf suspicious results.
Peter Camilleri wrote:
> The code: 'a b c'.scanf('%[a] %[b] %[c]')
>
> yields the result: ["a"] and not ["a","b",...
musgravejw (John Musgrave)
09:53 AM Feature #8317: URI: no_proxy with whitespaces and leading dots.
Could this be applied?
BTW how is this relates to #10251?
vo.x (Vit Ondruch)
08:21 AM Bug #12065: problem with multiplication 2 numbers
This is a FAQ. Read the FAQ section here https://bugs.ruby-lang.org/ shyouhei (Shyouhei Urabe)
08:17 AM Bug #12065 (Rejected): problem with multiplication 2 numbers
Hi,
why do this ?
irb(main):006:0> 15.1*100
=> 1510.0 -----> OK
irb(main):008:0> 671.12*100
=> 67112.0 ---...
valdambrini.andrea (Andrea Valdambrini)
06:13 AM Feature #12064 (Assigned): Make creation of enc/unicode/casefold.h automatic again
The creation of enc/unicode/casefold.h has been moved to a special make target, 'unicode-up', in r53771, to avoid CI ... duerst (Martin Dürst)
05:37 AM Feature #12041: Change the initializer of NameError to take a receiver as the third argument
I found this causes `drb` test failures, since `NoMethodError` now refers `DRbObject` and `Marshal.dump` fails. nobu (Nobuyoshi Nakada)
04:24 AM Revision 434fc4c8 (git): drbtest.rb: make command an array
* test/drb/drbtest.rb (DRbService): make @@ruby an array to be
consistent with r35424.
git-svn-id: svn+ssh://ci.ru...
nobu (Nobuyoshi Nakada)
03:21 AM Revision 6bbe44a3 (git): error.c: fix doc [ci skip]
* error.c (name_err_initialize, nometh_err_initialize): [DOC] fix
argument positions. optional parameters except f...
nobu (Nobuyoshi Nakada)
02:50 AM Revision 0a19e7f0 (git): net/ftp.rb: NullSocket#closed?
* net/ftp.rb: add NullSocket#closed? to fix closing not opened
connection. [Fix GH-1232]
git-svn-id: svn+ssh://ci...
nobu (Nobuyoshi Nakada)
02:17 AM Revision 41784333 (git): * 2016-02-12
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
02:17 AM Revision 301cbf4d (git): Update re.c [ci skip]
* re.c (rb_reg_initialize_m): [DOC] fix missing right bracket.
[Fix GH-1243]
git-svn-id: svn+ssh://ci.ruby-lang.or...
nobu (Nobuyoshi Nakada)

02/11/2016

03:58 PM Feature #12062: supporting CIDR in ENV["no_proxy"]
Nobuyoshi Nakada wrote:
> https://github.com/ruby/ruby/compare/trunk...nobu:feature/12062-no_proxy-CIDR
:+1:
tha...
kumagi (宏樹 熊崎)
12:25 PM Feature #12062: supporting CIDR in ENV["no_proxy"]
https://github.com/ruby/ruby/compare/trunk...nobu:feature/12062-no_proxy-CIDR nobu (Nobuyoshi Nakada)
08:15 AM Feature #12062 (Closed): supporting CIDR in ENV["no_proxy"]
Ruby supports `ENV["no_proxy"]` in `lib/uri/generic.rb`
Current implementation expects comma separated hostname suff...
kumagi (宏樹 熊崎)
01:41 PM Feature #12063 (Closed): KeyError#receiver and KeyError#name
I propose **KeyError#receiver** and **KeyError#name** (or KeyError#key) like NameError.
I think these method help ...
ksss (Yuki Kurihara)
10:24 AM Misc #12004: Code of Conduct
Tomek Mańko wrote:
>
> This is not a rational discussion most of the time, but a lukewarm war of sorts.
And tha...
einhverfr (Chris Travers)
09:51 AM Feature #10793: Infrastructure/Release-Management: Sign releases
Yui NARUSE wrote:
> As far as I remember we discussed this topic before (but I can't find the ticket/mail).
>
> A...
aef (Alexander E. Fischer)
06:18 AM Bug #11946: Assertion failed: (!STR_EMBED_P(shared)), function str_new_frozen, file string.c, line 1075.
2.3.1 is the next patch level release.
nobu (Nobuyoshi Nakada)
03:54 AM Bug #11946: Assertion failed: (!STR_EMBED_P(shared)), function str_new_frozen, file string.c, line 1075.
Will this be released in a patch level release? Or do we have to wait till 2.3.1? fredngo (Fred Ngo)
05:58 AM Revision 2456239f (git): configure.in: fix universal binary
* configure.in (RUBY_CHECK_SIZEOF, RUBY_DEFINT): fix for types
which are conditionally available depending on archi...
nobu (Nobuyoshi Nakada)
05:32 AM Revision 9323a8db (git): configure.in: use quadrigraphs
* configure.in (RUBY_DEFINT): use quadrigraphs instead of bare
hash signs not to comment out closing parenthesis.
...
nobu (Nobuyoshi Nakada)
03:33 AM Feature #11547: remove top-level constant lookup
Corin, I completely agree. Recently, Rails's nondeterministic autoload made it very hard for me to discover this pro... bronson (Scott Bronson)
03:24 AM Bug #12061 (Closed): DNS resolv error RuntimeError: can't modify frozen String when using IPv6 Addresses
usa (Usaku NAKAMURA)

02/10/2016

09:53 PM Bug #12061 (Closed): DNS resolv error RuntimeError: can't modify frozen String when using IPv6 Addresses
Just upgraded from Ruby 1.9.3-p194 to Ruby 2.3.0
eventmachine (1.0.9.1)
eventmachine_httpserver (0.2.1)
irb
2...
steve.misky (Stephen Misk)
09:29 PM Revision 832f2753 (git): * configure.in (RUBY_DEFINT): use Parameter Expansion.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e naruse (Yui NARUSE)
09:29 PM Revision 2e90c0bd (git): fix r53801: the argument should remove UNSIGNED
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e naruse (Yui NARUSE)
08:57 PM Revision 693cc673 (git): * 2016-02-11
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53803 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
08:57 PM Revision 60f39869 (git): * configure.in (int128_t): don't check HAVE_XXX (for example
HAVE___INT128) because RUBY_CHECK_SIZEOF() don't define it for
config.h and use of $ac_cv_sizeof___int128 alternate...
naruse (Yui NARUSE)
01:57 PM Bug #12060 (Feedback): 2016_02_10 Downloaded Ruby 2.3.0 Fails to Build
Could you show ext/date/mkmf.log file? nobu (Nobuyoshi Nakada)
01:03 PM Bug #12060: 2016_02_10 Downloaded Ruby 2.3.0 Fails to Build
The sha256 of the downloaded
https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.0.tar.gz
is exactly as advertis...
martin_vahi (Martin Vahi)
12:57 PM Bug #12060 (Closed): 2016_02_10 Downloaded Ruby 2.3.0 Fails to Build

The key phrase after executing make is:
~~~
make[1]: Leaving directory '/opt/mmmv/ruby/src/tmp/ruby-2.3.0'
Gen...
martin_vahi (Martin Vahi)
01:36 PM Bug #11988: YAML.dump doesn't quote string starting with 0 which will be recognized as float in YAML 1.2
I addressed this issue to upstream. ref https://github.com/tenderlove/psych/pull/270 hsbt (Hiroshi SHIBATA)
12:05 PM Bug #11979: gcc-6 fails to optimize regcomp.c:compile_length_quantifier_node()
FYI, https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69291 was REOPENED,
because the "Issue still happens on i586 and f...
t-nissie (Takeshi Nishimatsu)
07:06 AM Revision aedfee01 (git): configure.in: remove unnecessary qualifier
* configure.in (RUBY_DEFINT): remove unnecessary unsigned
qualifier from preprocessing symbols.
git-svn-id: svn+ss...
nobu (Nobuyoshi Nakada)
06:28 AM Revision 0c3a54e6 (git): ARFLAGS needs a space
* configure.in (ARFLAGS): needs a trailing space to separate from
the target library name, whereas VC linker flag m...
nobu (Nobuyoshi Nakada)
04:16 AM Revision f8cc2fb9 (git): configure.in: unique names
* configure.in (RUBY_CHECK_SIZEOF): make variable names unique
with rbcv_sizeof_ prefix.
git-svn-id: svn+ssh://ci....
nobu (Nobuyoshi Nakada)
04:02 AM Feature #12059: `Array#single?`, `Hash#single?`
Right. Given the original examples by the OP `Enumerable#one?` works.
~~~ruby
a = ["object1", "object2"]
"There...
danielpclark (Daniel P. Clark)
02:11 AM Feature #12059: `Array#single?`, `Hash#single?`
`[1, false, nil].one?` also returns `true`.
From `ri Enumerable#one?`:
----------------------------------------...
nobu (Nobuyoshi Nakada)
03:03 AM Revision 12eb0df4 (git): check ar D flag
* configure.in (ARFLAGS): check if deterministic mode flag is
effective, which is on by default on Ubuntu.
git-svn...
nobu (Nobuyoshi Nakada)
 

Also available in: Atom