gkellogg (Gregg Kellogg)
- Login: gkellogg
- Email: gregg@kellogg-assoc.com
- Registered on: 03/31/2010
- Last sign in: 12/31/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
12/31/2017
-
09:59 PM Ruby Bug #14263 (Closed): Array Intersection does not seem to use hash
- According to the documentation for Array#&, comparison is done using hash and eql? However, this does not seem to be the case in 2.5.0.
If two instances are .eql? but their hashes are not, an array & should be empty:
~~~ ruby
([Va...
12/29/2014
-
02:35 AM Ruby Bug #10670 (Closed): char-class matching same character with different encodings raises exception
- The following simple script illustrates the issue:
~~~ruby
ESCAPE_PLAIN = /\A[\x5B]*\z/m.freeze
0x5B.chr(::Encoding::UTF_8) =~ ESCAPE_PLAIN
0x5B.chr =~ ESCAPE_PLAIN
~~~
`\x5B` is `']'`, run all lines above and get _in `=~': e...
05/30/2012
-
09:57 AM Ruby Bug #6514 (Rejected): Abort trap: 6 running rspec on rdf.rb
- Running RSpec on http://github.com/ruby-rdf/rdf/spec reliably generates the Abort trap.
To repeat:
1. git clone git://github.com/ruby-rdf/rdf.git
2. cd rdf
3. bundle install
4. rspec spec
It does not seem to happen when runni...