Activity
From 10/23/2016 to 10/29/2016
10/29/2016
-
09:29 PM Bug #12884 (Closed): Using a HashWithIndifferentAccess with a default value in a function with a keyword parameter converts it to a Hash.
- A strange bug that broke our production when migrating from 2.1.9 to 2.2.5 (still present in 2.3.1)
It involves Hash... -
06:58 PM Feature #12802: Add BLAKE2 support to Digest
- Nice @ SHA-3 branch. I think it makes sense to add both.
The reason to add BLAKE2 in addition to SHA-3 is that BLA... -
01:37 PM Feature #12046: Allow attr_reader :foo? to define instance method foo? for accessing @foo
- > If you have any concrete use-case for the new (more complex) behavior, please tell me.
This feature request has ... -
11:51 AM Bug #12883 (Feedback): Bus Error at 0x0000010b8075eb
- Michalis Despotopoulos wrote:
> From the diagnostic reports:
What's the rest? -
11:37 AM Bug #12883: Bus Error at 0x0000010b8075eb
- From the diagnostic reports:
```
Process: ruby [23318]
Path: /Users/USER/*/ruby
Identifier: ... -
11:35 AM Bug #12883 (Closed): Bus Error at 0x0000010b8075eb
- After trying to start the rails server, my page wasn't loading. Then I killed the process and here is what I got:
... -
10:59 AM Bug #12881 (Closed): Double-bang (!!) raises warning on string literal
- Applied in changeset r56522.
----------
parse.y: !-operator warning
* parse.y (cond0): !-operator is a method call,... -
08:15 AM Feature #12877: windows-1255とUnicode間の変換テーブルがWindowsの実装と一致しない
- その後VMにファイルを送り込むことに成功しました。IE4がインストールされていないWindows NT 4.0でも、windows-1255のマッピングテーブルはWindows 10と同じでした。というわけで題名を戻します。
東... -
02:23 AM Feature #12877: windows-1255とUnicode間の変換テーブルがWindowsの実装と一致しない
- 0xCA→U+05BAのマッピングは少なくともWindows 2000から存在するので、変更されたわけではないです(それ以前のOSはいつの間にかVMwareでゲストにファイルを送り込むことができなくなっていて、確認できませんでした)。...
-
12:44 AM Bug #12880 (Feedback): rails generate but
- Any messages when you cancelled it?
-
12:39 AM Bug #12879 (Third Party's Issue): You may have encountered a bug in the Ruby interpreter or extension libraries.
- Install sqlite3 by HomeBrew.
-
12:39 AM Bug #12876 (Closed): Calling new hangs Ruby when class prepends an empty module and makes initialize method public
- Applied in changeset r56520.
----------
vm_eval.c: follow the original class
* vm_eval.c (vm_call0_body): follow th...
10/28/2016
-
09:01 PM Feature #12882 (Closed): Add caller/file/line information to internal Kernel#warn calls
- Most internal uses of Kernel#warn do not begin with caller/file/line information, making debugging such warnings more...
-
05:39 PM Bug #12881 (Closed): Double-bang (!!) raises warning on string literal
- I use !!x or !!(x) to force x to true or false.
I just noticed this trick raises a warning with string literals.
It... -
05:11 PM Feature #12012: Add Boolean method
- I'm doing a bug report now.
I use Thunderbird, and I didn't know whether to use Reply or Reply to
Group. Sorry.... -
08:01 AM Feature #12012: Add Boolean method
- On 2016/10/28 11:57, RRRoy BBBean wrote:
> irb(main):002:0> !!('hi')
> (irb):2: warning: string literal in conditi... -
03:52 PM Bug #12859: Bug on Rails Console?
- Jorge Dominguez wrote:
> Nobuyoshi Nakada wrote:
> > Not the gem's bug, OS-bundled sqlite3 library's bug.
>
> Ho... -
02:06 PM Bug #12859: Bug on Rails Console?
- You can install another version of sqlite3 from macports or homebrew.
-
01:48 PM Bug #12859: Bug on Rails Console?
- Nobuyoshi Nakada wrote:
> Not the gem's bug, OS-bundled sqlite3 library's bug.
How do i fix it? -
07:42 AM Bug #12859: Bug on Rails Console?
- Not the gem's bug, OS-bundled sqlite3 library's bug.
-
03:14 PM Feature #12877 (Closed): windows-1255とUnicode間の変換テーブルがWindowsの実装と一致しない
- Applied in changeset r56516.
----------
Update windows-1255 table
* enc/trans/windows-1255-tbl.rb: update mapping f... -
12:00 PM Feature #12877 (Closed): windows-1255とUnicode間の変換テーブルがWindowsの実装と一致しない
- ○再現手順
ruby -e 'printf("%#x\n", 0xCA.chr("windows-1255").encode("UTF-8").ord)'
○実際の結果
-e:1:in `encode': "\xCA" to... -
02:34 PM Bug #12880 (Closed): rails generate but
- Hi there,
When i do
~~~
rails generate controller Foo bar baz
Running via Spring preloader in process 95248
... -
02:18 PM Bug #12879 (Third Party's Issue): You may have encountered a bug in the Ruby interpreter or extension libraries.
- Running an exercise on building a web app from the book Agile web development for Rails 5
command bin/rails test t... -
12:28 PM Bug #12878 (Closed): 0.49999999999999994.round is 1 and not 0 on Windows 64
- 0.49999999999999994.round produces 1 on this platform, while all other platforms seem to produce the expected 0 (roun...
-
05:33 AM Bug #12876 (Assigned): Calling new hangs Ruby when class prepends an empty module and makes initialize method public
- ```
zsh % lldb -- ./miniruby -v ~/tmp.rb
(lldb) target create "./miniruby"
Current executable set to './miniruby' ...
10/27/2016
-
11:17 PM Feature #12012: Add Boolean method
- You can use **`wannabe_bool`** gem: https://github.com/prodis/wannabe_bool
-
11:14 PM Feature #11848: New #to_b method for String, Symbol, Numeric, NilClass, TrueClass and FalseClass.
- Andrew Vit wrote:
> I've had to do this in a few places over the years myself:
>
> ~~~
> TRUTHY_VALUES = [true, ... -
10:01 PM Bug #12859 (Third Party's Issue): Bug on Rails Console?
- It's sqlite3 gem issue.
-
09:47 PM Bug #12859: Bug on Rails Console?
- Shyouhei Urabe wrote:
> The message you pasted is not full. There should be something before the part you copied. ... -
02:18 PM Bug #12876 (Closed): Calling new hangs Ruby when class prepends an empty module and makes initialize method public
- ```ruby
module Foo
end
class Bar
prepend Foo
public :initialize
end
p Bar.new # => hangs
```
## ... -
02:09 PM Bug #12875 (Closed): Fixnum bit operator and coerce
- The following code raises "Test can't be coerced into Fixnum (TypeError)"
~~~ ruby
class Test
attr_accessor :v... -
07:48 AM Bug #12743: throw(false) does not work as expected
- ruby_2_2 r56505 merged revision(s) 56252,56254.
-
07:47 AM Bug #12822: Backport r56374 (fix monthly log rotate with DST)
- ruby_2_2 r56504 merged revision(s) 56374.
-
07:44 AM Feature #12802: Add BLAKE2 support to Digest
- https://github.com/nobu/ruby/tree/feature/digest/sha3
-
07:10 AM Feature #12802: Add BLAKE2 support to Digest
- Is there still a supported environment without 64-bit integer support? ext/digest/sha2/sha2.c is already using 64-bit...
-
01:32 AM Feature #12802: Add BLAKE2 support to Digest
- I meant that BLAKE2b seems to need `uint64_t`.
If a compiler does not support such large integer type, isn't BLAKE2b... -
07:39 AM Bug #12872 (Rejected): COMMAND LINE ERROR when tried gem --help
- You load an extension library for 2.3 from 2.0.0.
-
06:20 AM Bug #12872 (Rejected): COMMAND LINE ERROR when tried gem --help
- ```
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --vers... -
07:38 AM Bug #12823: compile issues 2.2.5 with cygwin
- ruby_2_2 r56503 merged revision(s) 55232.
-
07:31 AM Bug #12874 (Third Party's Issue): Eventmachine recompile with openssl-win64 error
- eventmachine recompile with ruby225-32 and Win32 OpenSSL v1.0.2j run ok (almost only way) but can't run when recompil...
-
07:27 AM Bug #11736: Float(arg) not consistent with documentation
- ruby_2_2 r56501 merged revision(s) 56421,56422.
-
07:22 AM Bug #12873 (Closed): Eventmachine recompile with openssl-win64 error
-
04:46 AM Feature #12871 (Closed): Using the algorithm like math.fsum of Python for Array#sum
- Array#sum uses the Kahan's algorithm for Float values now. But it returns inaccurate value in some case like below.
...
10/26/2016
-
04:47 PM Feature #12802: Add BLAKE2 support to Digest
- BLAKE2b will work on 32-bit CPUs but is optimized for 64-bit CPUs
-
03:52 PM Feature #12802: Add BLAKE2 support to Digest
- Is BLAKE2b unavailable if 64-bit integer is unavailable?
10/25/2016
-
07:05 PM Feature #11925: Struct construction with kwargs
- To be prepared for "the great unification of constructors" of course.
It looked like a pretty logical step to supp... -
06:54 PM Feature #11925: Struct construction with kwargs
- Herwin W wrote:
> ~~~ ruby
> irb(main):003:0> MyClass.new_from_kwargs(1, 2, 3, b: 3)
> => #<struct MyClass a=1, b=... -
06:37 PM Feature #11925: Struct construction with kwargs
- https://github.com/ruby/ruby/pull/1468
A proposal for an implementation.
~~~ ruby
irb(main):001:0> MyClass = S... -
06:58 AM Feature #11925: Struct construction with kwargs
- What about `new_from_kwargs(**kwargs)` ? It's a bit long, but it describes the functionality exactly.
-
06:38 PM Feature #11210: IPAddr has no public method to get the current subnet mask
- Any progress? I believe all the comments have been addressed.
-
01:05 PM Bug #12870 (Closed): Crash when querying with activerecord
- I have a control named entry1 in Visual Ruby project.
In entry2__changed method I populate a list view
I get this... -
07:01 AM Feature #9209: Struct instances creatable with named args
- This looks like a duplicate of #11925 (or maybe the other way around, but the other ticket includes more information)
-
05:06 AM Feature #12869: open-uri's open rejects `BOM' in encoding
- https://github.com/ruby/ruby/compare/trunk...nobu:feature/12869-open-uri-bom
-
03:54 AM Bug #12832 (Closed): Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- Applied in changeset r56489.
----------
proc.c: follow the original class
* proc.c (mnew_internal): follow the orig... -
01:42 AM Feature #10208: Passing block to Enumerable#to_h
- Not a direct translation of the proposed method, but Hash#transform_values is now available. https://bugs.ruby-lang.o...
10/24/2016
-
09:44 PM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- super is in sync with `__method__` because they are designed to be in sync, `__method__` called from a block typicall...
-
09:03 PM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- bug hit wrote:
> Jeremy Evans wrote:
> >
> > One could argue that super is currently always relative to the curren... -
05:35 PM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- Jeremy Evans wrote:
>
> One could argue that super is currently always relative to the current, dynamic method
E... -
04:42 PM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- bug hit wrote:
> Jeremy Evans wrote:
> > method calls in blocks are sometimes lexical and sometimes dynamic, depend... -
04:04 PM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- Jeremy Evans wrote:
> method calls in blocks are sometimes lexical and sometimes dynamic, depending on how the block... -
03:57 PM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- bug hit wrote:
> it would have to fail the same way instance_eval of the block (with super) fails when self is wrong... -
06:01 AM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- Shyouhei Urabe wrote:
> bug hit wrote:
> > I think it would be better if super were always lexically scoped
>
> ... -
04:20 AM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- I don't think this is a bug, the ability to change the scope of a block is just part of ruby, and arguably one of the...
-
03:59 AM Feature #12861: super in a block can be either lexically or dynamically scoped depending on how the block is invoked
- bug hit wrote:
> I think it would be better if super were always lexically scoped
Agreed but... What should then ... -
05:24 PM Feature #10208: Passing block to Enumerable#to_h
- So, we need a different name for this.
Here's some candidates I can think of:
- hash_by (proposed above)
- to_... -
05:24 PM Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
- I'm not sure whether this is useful information but calling `#instance_method` on `Bar`'s metaclass also causes Ruby ...
-
12:13 PM Feature #12867: Add ability to check validity of a URL
- Shlok Srivastava wrote:
> Shyouhei Urabe wrote:
> > Doesn't URI.parse work for you?
>
> As URI.parse actually ch... -
11:54 AM Feature #12867: Add ability to check validity of a URL
- Shyouhei Urabe wrote:
> Doesn't URI.parse work for you?
As URI.parse actually check for valid URIs and not URLs
... -
12:14 AM Feature #12867: Add ability to check validity of a URL
- Doesn't URI.parse work for you?
-
10:47 AM Feature #12869 (Open): open-uri's open rejects `BOM' in encoding
- Kernel.#openのエンコード指定では、BOMへの対応も指定できます。
```ruby
open('foo.txt', 'r:BOM|UTF-8') ...
```
open-uriが再定義したopenでURLを... -
08:51 AM Bug #12830: OpenSSL 1.1.0+ support?
- Thx for investigation. I can confirm that r55074 make the Typhoeus (and Ethon) to pass its test suite.
-
08:49 AM Bug #12868: Please backport r55074 (openssl, fix ex_data index for X509_STORE_CTX)
- I am going to use this patch [1] in Fedora if it helps.
[1]: http://pkgs.fedoraproject.org/cgit/rpms/ruby.git/tree... -
07:29 AM Bug #9839 (Rejected): Segment fault in http
- This should have been fixed at [Bug #9592]. I suspect Paul's is another issue ([Bug #12292]), though, I can't tell wi...
-
07:11 AM Feature #5462 (Closed): TLS support for WEBrick::HTTPProxyServer
- It seems it does. TestWEBrickHTTPProxy#test_connect in test/webrick/test_httpproxy.rb is testing.
-
07:07 AM Bug #12849 (Rejected): Ruby 2.3.1 build fails with FreeBSD 11
- It turned out to be an issue of mixing two different OpenSSL installations.
-
07:05 AM Bug #8673 (Closed): User rest-client PUT request core dumped
- Fixed by 66c1da57eb03 at new upstream[1] and imported by r56027 ("import Ruby/OpenSSL 2.0.0.beta.1").
[1]: https:/... -
03:50 AM Bug #12859 (Feedback): Bug on Rails Console?
- The message you pasted is not full. There should be something before the part you copied. Can you disclose the log ...
-
01:19 AM Bug #12866 (Closed): Complex should not respond to clamp
- Applied in changeset r56479.
----------
complex.c: undefine clamp
* complex.c (Init_Complex): undefine Complex#clam...
10/23/2016
-
03:23 PM Bug #12309 (Rejected): Segmentation fault caused by OpenSSL
- It looks like the same issue as [Bug #12292] rather than [Bug #12126], because #12126 should not be a cause of a segf...
-
03:16 PM Bug #10522 (Rejected): SSL_VERSION not handled properly in Net::Http, OpenSSL libraries
- As commented at the GitHub PR, there doesn't seem to be anything wrong. `ssl_socket.set_params(ssl_version: :TLSv1)` ...
-
03:14 PM Bug #10479 (Rejected): OpenSSL not upgrading to 1.0.1j while recompiling Ruby.
- The version string in OpenSSL::OPENSSL_VERSION is not the version running with but the OpenSSL version compiled with....
-
03:13 PM Bug #10799 (Rejected): Segmentation fault in Tests
- I can't tell without a reproducer but the symptoms looks like similar to [Bug #12292].
-
03:10 PM Bug #12646 (Rejected): When using sidekiq in rails and call multiple times
- Sounds like [Bug #12292]. Please provide a reproducer if it does not fix.
-
03:04 PM Bug #9714 (Rejected): Ruby configured to call OpenSSL engine API when it shouldn't
- Indeed we should check for OPENSSL_NO_ENGINE instead of the existence of openssl/engine.h, and it's actually done in ...
-
02:16 PM Feature #12867: Add ability to check validity of a URL
- I'd also love to work on this for my project over at the Fuss / Simply be http://www.thefuss.co.uk/simply-contact-number
-
06:53 AM Feature #12867 (Open): Add ability to check validity of a URL
- Hi!
Going through the URI module of Ruby, it was obvious that we can check the validity of a URI by using URI.regexp... -
02:12 PM Bug #12830: OpenSSL 1.1.0+ support?
- Yes, X509_STORE_{get,set}_ex_data() are implemented in ext/openssl/openssl_missing.c. In this specific case, applying...
-
02:02 PM Bug #12868 (Closed): Please backport r55074 (openssl, fix ex_data index for X509_STORE_CTX)
- Please backport r55074 ("openssl: register ex_data index for X509_STORE{_CTX,} respectively").
In Ruby <= 2.3, ext... -
08:05 AM Feature #12858: Supporting batch-requiring of files in ruby
- You realize [this gem](https://rubygems.org/gems/require_all/) does exactly that?
-
02:48 AM Bug #12862: Regular Expression Named Group Matching does not work with #{} (Similar? to issue #2778)
- Matthew Kerwin wrote:
> Leo Amigud wrote:
> >
> > Sorry, not sure what you mean.
> >
> > As a matter of fact i... -
01:56 AM Bug #12866 (Closed): Complex should not respond to clamp
- `Comparable#clamp` has been added, but doesn't work in `Complex`. It should be undefined on `Complex` like other `Co...
Also available in: Atom