Activity
From 09/11/2012 to 09/17/2012
09/17/2012
-
11:24 PM Feature #7019: allow `private` and `protected` keywords to take blocks
- What about
~~~ruby
privately do
end
~~~
? :)
(I understand that a good reason is needed to add a new keyword). -
10:13 PM Feature #7019: allow `private` and `protected` keywords to take blocks
- I know you like blocks but this proposal doesn't make sense to me because `public`/`private`/`protected` are declarat...
-
07:42 AM Bug #7018 (Rejected): unexpected behavior that constant is overridden and redefined
- Ruby 1.9.2's normal maintenance is finished.
https://bugs.ruby-lang.org/projects/ruby/wiki/ReleaseEngineering -
03:03 AM Bug #7031: Date::mjd_to_jd disappeared
- FWIW, they were part of 1.8.7:
http://www.ruby-doc.org/stdlib-1.8.7/libdoc/date/rdoc/Date.html#method-c-mjd_to_j...
09/16/2012
-
10:57 PM Feature #7019: allow `private` and `protected` keywords to take blocks
- I've often wondered about being able to use:
~~~ruby
private def f
#
end
~~~
I think it's true that the p... -
04:08 PM Bug #7032 (Closed): TestSetTraceFuncの実行に失敗する
- =begin
辻本です。
以下のようにテストを実行すると、まれにTestSetTraceFuncの実行に失敗することがあります。
$ make TESTS='-vq -j1 objspace/test_objspace... -
02:42 PM Bug #7031 (Assigned): Date::mjd_to_jd disappeared
- I believe these were not API methods
tadf, can you confirm? -
02:40 PM Bug #7031 (Rejected): Date::mjd_to_jd disappeared
- I've migrated almost all of my Ruby code from Ruby 1.8 to 1.9 (finally!). Most things went pretty smoothly, but I r...
-
02:38 PM Bug #7029 (Assigned): yaml#load_file too slow under Psych
- Please note that syck no longer exists in ruby trunk, so this benchmark cannot run
-
06:31 AM Bug #7029: yaml#load_file too slow under Psych
- Please ignore the previous test file. I've come up with a much better test. This is indicative of the real-world use-...
-
03:16 AM Bug #7029 (Closed): yaml#load_file too slow under Psych
- Unzip attached folder and run test.rb. Remember time output. Now uncomment the ENGINE line so we switch from Psych to...
-
11:39 AM Bug #6764 (Closed): IO#read(size, buf) causes can't set length of shared string in trunk (2.0.0dev)
- This issue was solved with changeset r36980.
Hiroshi, thank you for reporting this issue.
Your contribution to Ruby i... -
09:24 AM Revision 315cbef8 (git): file.c: reduce xmalloc
- * file.c (rb_readlink): read symlink in the result string directly.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trun... -
09:09 AM Revision f3dd7c49 (git): parse.y: suppress warnings
- * parse.y (id_type): suppress warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36983 b2dd03c8-39d4-4d8f-9... -
08:47 AM Revision 32d416db (git): * tool/change_maker.rb: Update svn detection for subversion 1.7's
- single .svn directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e -
08:41 AM Revision c278c846 (git): configure.in: warnflags
- * configure.in (warnflags): needs to check configuration with strict
options. [ruby-dev:46105]
git-svn-id: svn+ss... -
08:16 AM Feature #7030 (Closed): Add .editorconfig to the source repository
- This issue was solved with changeset r36976.
Hong, thank you for reporting this issue.
Your contribution to Ruby is g... -
07:08 AM Feature #7030 (Closed): Add .editorconfig to the source repository
- EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The Ed...
-
02:39 AM Revision 59383b1f (git): io.c: io_set_read_length
- * io.c (io_set_read_length): if the read length equals to the buffer
string size then nothing to do. or ensure the... -
01:22 AM Feature #7028 (Closed): Please Repatch FileUtils.compare_stream
- I found faster FileUtils.compare_stream accepted in [Feature #5337] was lost since r34669.
https://bugs.ruby-lang.or... -
12:18 AM Bug #7027 (Closed): Tempfile#inspect is Confusing
- I think Tempfile#inspect is really confusing.
It says Tempfile object is a File, but it is not a File object.
% i...
09/15/2012
-
11:58 PM Revision 4a906510 (git): configure.in: strict warnflags
- * configure.in (strict_warnflags): separate strict flags from
warnflags only for core. [ruby-dev:46105]
git-svn-... -
11:52 PM Revision 057b1986 (git): configure.in: aix warnflags
- * configure.in: append -qinfo option not overriding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36978 b2dd03... - 11:16 PM Revision 310cbde4 (git): * 2012-09-16
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
11:16 PM Revision fdd8d5ba (git): .editorconfig: new
- * .editorconfig: add. [ruby-core:47548] [Feature #7030]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36976 b2d... -
09:11 PM Bug #7024: 90 * 1.1 => 99.00000000000001
- Julien, try
(90 * Rational(11, 10)).to_f
or
(90 * '1.1'.to_r).to_f
or
(90 * 1.1.rationalize).to_f -
07:05 AM Bug #7024 (Rejected): 90 * 1.1 => 99.00000000000001
- This is expected from floating point calculations; you'll get this result in other languages too.
Checkout http://... -
05:43 AM Bug #7024 (Rejected): 90 * 1.1 => 99.00000000000001
- $ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [i686-linux]
$ irb
1.9.3p194 :001 > 90*1.1
=> 99.0000000000... -
09:04 PM Bug #6764: IO#read(size, buf) causes can't set length of shared string in trunk (2.0.0dev)
- I see this bug with rubyzip. I tried to create a patch.
-
03:53 PM Bug #6799: Digest::*.hexdigest returns an ASCII-8BIT String
- On Fri, Sep 14, 2012 at 07:35:46PM +0900, Eregon (Benoit Daloze) wrote:
>
> Issue #6799 has been updated by Erego... -
01:12 PM Bug #6441: IO.pipe on ENFILE
- すみません、この問題をよく理解できてないので何点か質問させてください。
GC側をどのように直せばいいかいまいちわかっておらず、悩んでいます…。
naruse (Yui NARUSE) wrote:
> 今の Ruby は o... -
12:12 PM Feature #6812 (Closed): Refactor gc.c
- だいぶん前になりますが、gc.cを少し整理してみたのでこのチケットは閉じておきます。
-
09:26 AM Revision 47b642bd (git): parse.y: new_attr_op_assign
- * parse.y (new_attr_op_assign): extract.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36975 b2dd03c8-39d4-4d8f-... -
09:26 AM Revision 2bfc48dd (git): parse.y: new_op_assign
- * parse.y (new_op_assign): extract.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36974 b2dd03c8-39d4-4d8f-98ff-... -
09:26 AM Revision 66d03f5f (git): parse.y: switch
- * parse.y (gettable_gen, assignable_gen): rewrite sequential if-else
as switch.
git-svn-id: svn+ssh://ci.ruby-lang... -
09:26 AM Revision b520b218 (git): parse.y: static table
- * parse.y (lex_state_name): use static table.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36972 b2dd03c8-39d4-... -
09:26 AM Revision 356c0857 (git): test_parse.rb: eval locations
- * test/ruby/test_parse.rb: set eval locations.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36971 b2dd03c8-39d4... -
09:23 AM Feature #7025 (Closed): way to wait for closing with IO.popen object
- =begin
Process.wait(popened_io.pid)
=end
-
08:46 AM Feature #7025 (Closed): way to wait for closing with IO.popen object
- Hello.
I noticed that it seems, if you do:
IO.popen("something", "w")
there's currently no way (without using a ... -
03:21 AM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
- > Ok, now callback is wrapped to rb_ensure inside of rb_mutex_sleep_forever and rb_mutex_wait_for.
Unfortunately, ... -
03:13 AM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
- > I cann't understand, why "main thread shouldn't take a mutex"? In real application it could be very other thread, n...
-
02:26 AM Bug #7005 (Closed): NKF: CP50221 から CP932 に変換できない文字がある
- This issue was solved with changeset r36968.
Masahiro, thank you for reporting this issue.
Your contribution to Ruby ... -
01:13 AM Feature #7022: add event hook for garbage collection
- hmm...correct me if I'm wrong (I'm trying to maintain the ruby-prof gem here) will the dtrace probes in #2565 help me...
09/14/2012
-
07:50 PM Bug #7008: rake is crashing when trying to compile ffi gem
- To set the environment variable PKG_CONFIG_PATH when building ruby from source might help.
For example, export PKG_C... -
02:43 AM Bug #7008: rake is crashing when trying to compile ffi gem
- I have indeed 0.9.7 in base system and 1.0.0 built from sources, installed in different prefixes. Is there a way of b...
-
07:35 PM Bug #6799: Digest::*.hexdigest returns an ASCII-8BIT String
- @Aaron: Maybe String#unpack should be fixed instead to return an ASCII string for the 'H', 'h', 'B' and 'b' directive...
-
06:01 PM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
- Good day, Kosaki-san.
Ok, now callback is wrapped to rb_ensure inside of rb_mutex_sleep_forever and rb_mutex_wait_... -
04:48 PM Bug #6174: Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
- > + serialize.wait{ thread.run }
This could be
+ serialize.wait{ }
Test is failing as well, so that, step 4 ... -
03:36 AM Bug #6174 (Rejected): Fix collision of ConditionVariable#wait timeout and #signal (+ other cosmetic changes)
I've reviewed your code. Unofrtunately your testcase is not correct.
+ def test_condvar_wait_timeout
+ seri...-
05:34 PM Bug #4911: timer_thread_function() が thead unsafe
- I've made a patch.
https://github.com/ruby/ruby/pull/182
ko1, could you please review it?
-
05:29 PM Revision bcd7b81e (git): * pack.c: fix typo.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:29 PM Revision 429c856e (git): * configure.in: fix typo.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
05:26 PM Revision 3d42b235 (git): * ext/nkf/nkf-utf8/nkf.c: Merge upstream: 50a383c84.
- [ruby-dev:46128] [Bug #7005]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36968 b2dd03c8-39d4-4d8f-98ff-823fe69... -
05:15 PM Feature #7022: add event hook for garbage collection
- You can't add an event hook for the start of garbage collection. Ruby is out of space for creating the necessary obje...
-
03:32 PM Feature #7022 (Closed): add event hook for garbage collection
- It would be useful for profilers to have more insight into garbage collection. Feature request: add event hooks for ...
-
04:32 PM Feature #3346: __DIR__ revisted
- definitely recommend full path to avoid possible confusion, like we used to have with 1.8.x not using the full path f...
- 04:07 PM Revision 4649f218 (git): * 2012-09-15
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
04:07 PM Revision 1aab4196 (git): * ext/nkf/nkf.c (rb_nkf_convert): suppress warning.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
10:30 AM Bug #7021: WEBrick::HTTPUtils.parse_header "normalizing" white space of cookie values.
- I forgot to add this in the description here is the style of cookie that is giving me issues:
Cookie: testcookie=`... -
10:15 AM Bug #7021 (Closed): WEBrick::HTTPUtils.parse_header "normalizing" white space of cookie values.
- parse_header calls value.gsub!(/\s+/, " ") on ALL header values. I am using a web framework that runs on WEBrick as a...
-
09:23 AM Bug #6929: Documentation for Ripper
- As a documentation committer, feel free to commit documentation without making tickets unless you would like to get a...
-
03:29 AM Bug #6929: Documentation for Ripper
- Hello,
On Thu, Sep 13, 2012 at 2:25 PM, Eregon (Benoit Daloze)
<[email protected]> wrote:
> I would say... -
03:25 AM Bug #6929: Documentation for Ripper
- zzak (Zachary Scott) wrote:
> Should I setup a new ticket for this?
I would say go ahead and commit it, as it's j... -
04:08 AM Bug #6872 (Closed): Array does not specify how it determines uniqueness of values
- This issue was solved with changeset r36965.
Andrew, thank you for reporting this issue.
Your contribution to Ruby is... -
03:32 AM Bug #6908 (Closed): Update Documentation for Select and reject
- This issue was solved with changeset r36964.
Jeff, thank you for reporting this issue.
Your contribution to Ruby is g... -
03:10 AM Feature #6572 (Closed): Array#index return array of indexes
- Closing this, duplicate of [Bug #6596]
See github pull request for further background: https://github.com/ruby/rub...
09/13/2012
-
11:53 PM Bug #6929: Documentation for Ripper
- Should I setup a new ticket for this?
On Thu, Sep 13, 2012 at 10:21 AM, Eregon (Benoit Daloze)
<redmine@ruby-... -
11:21 PM Bug #6929: Documentation for Ripper
- Yes, that sounds good.
-
10:25 PM Bug #6929: Documentation for Ripper
- =begin
Eregon: Thank you for the feedback! Would you prefer the following instead?
(({# In our case, we're simply... -
07:55 PM Bug #6929: Documentation for Ripper
- zzak: Good work!
Just a little note, when you say:
"# In our case, we're simply returning a String, so next we ha... -
08:04 AM Bug #6929 (Closed): Documentation for Ripper
- This issue was solved with changeset r36954.
Zachary, thank you for reporting this issue.
Your contribution to Ruby i... -
10:42 PM Bug #6964 (Closed): Documentation for Shellwords
-
08:25 AM Bug #6964: Documentation for Shellwords
- Resolved by changeset r36956
-
10:01 PM Bug #6990 (Closed): test_s_random_bytes_without_openssl error on Windows x64
- This issue was solved with changeset r36961.
Hiroshi, thank you for reporting this issue.
Your contribution to Ruby i... -
09:59 PM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
- =begin
Language of FormatMessage seems not affected by console code page.
Test using locale:
msg[0, len].force_... -
01:10 AM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
- Thank you Usa,
Hiroshi, leaving to you to commit. -
08:08 PM Bug #6033 (Third Party's Issue): Digest issue in 1.9.3
- Thank you for feedback.
So this seems third party's issue. -
07:51 PM Bug #6033: Digest issue in 1.9.3
- I'm experiencing the same issue, Mac OS 10.8.1, RVM, Ruby 1.9.3-p194
Also fixed using @annotunzdy's approach -
07:08 PM Revision 00fb59f1 (git): * array.c (rb_ary_diff, rb_ary_uniq):
- Enhance documentation for array uniqueness
Based on a patch by Robin Dupret
[Bug #6872] [ruby-core:47209]
git-s... -
06:32 PM Revision 1ae1b85e (git): * array.c (rb_ary_select):
- Update documentation for Array#select
* enum.c (enum_find_all, enum_reject):
Update documentation for Enumerable#fi... -
04:02 PM Feature #7019 (Rejected): allow `private` and `protected` keywords to take blocks
- I like to indent my private methods one level deeper, but this indentation is inconsistent with the syntax:
~~~rub... - 03:24 PM Revision 7a0d7e74 (git): * 2012-09-14
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:24 PM Revision b1228cae (git): * signal.c (rb_f_kill):
- Update documentation for Process.kill to reflect kill(2)
Patch by Richo Healey
git-svn-id: svn+ssh://ci.ruby-lang... -
01:18 PM Bug #7018 (Rejected): unexpected behavior that constant is overridden and redefined
- module Foo
module Bar
end
end
include Foo
m = Bar
#Bar expected being opened, instead, it is overridd... -
01:01 PM Revision 3207af4c (git): lib/securerandom.rb: fix errors on Windows
- * lib/securerandom.rb (SecureRandom.random_bytes):
Use 64bit value as pointer for Windows x64 to fix SystemCallErro... -
12:30 PM Bug #7008: rake is crashing when trying to compile ffi gem
- > Reading libcrypto.so.0.9.7
> Reading libcrypto_extra.so.0.9.7
> Reading digest.so
> Reading openssl.so
> Readin... -
08:00 AM Bug #7008: rake is crashing when trying to compile ffi gem
- What version of OpenSSL are you using?
-
03:44 AM Bug #7008: rake is crashing when trying to compile ffi gem
- I got more interesting bt with SIGSEGV removed from signal.c:
# dbx -f /usr/local/ruby-1.9.3/bin/ruby core
For in... -
03:25 AM Bug #7008: rake is crashing when trying to compile ffi gem
- I even got a backtrace. But I have no idea why it's so small and uninteresting:
# dbx -f /usr/local/ruby-1.9.3/bin... -
11:25 AM Bug #6996 (Closed): Documentation for OptionParser includes an email adress which is not deliverable
- This issue was solved with changeset r36960.
Eike, thank you for reporting this issue.
Your contribution to Ruby is g... -
11:22 AM Bug #6909 (Closed): Documentation for XMLRPC
- This issue was solved with changeset r36958.
Zachary, thank you for reporting this issue.
Your contribution to Ruby i... -
07:28 AM Feature #7006: Add Enumerable#grouped_in as a each_slice without the block
- Ah, okay, thank you, didn't notice before :P
-
02:25 AM Revision 92300037 (git): * lib/optparse.rb: Remove unreachable email address from documentation
- [Bug #6996] [ruby-core:47459]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36960 b2dd03c8-39d4-4d8f-98ff-823fe... -
02:24 AM Revision fc7a96e2 (git): * properties.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:22 AM Revision 1df7862b (git): * lib/xmlrpc.rb: Documentation for XMLRPC
- * lib/xmlrpc/datetime.rb: ditto.
* lib/xmlrpc/parser.rb: ditto.
* lib/xmlrpc/client.rb: ditto.
* lib/xmlrpc/utils.rb:... -
01:22 AM Revision d11ef850 (git): configure.in: no PIE on Haiku
- * configure.in: Don't use PIE on Haiku because loader support is not
enough.
git-svn-id: svn+ssh://ci.ruby-lang.or...
09/12/2012
-
11:53 PM Feature #7006: Add Enumerable#grouped_in as a each_slice without the block
- rosenfeld (Rodrigo Rosenfeld Rosas) wrote:
> Could someone do that, please?
Already done.
-
08:11 PM Feature #7006: Add Enumerable#grouped_in as a each_slice without the block
- Thanks, I didn't know that. I can't close this issue myself. Could someone do that, please?
-
04:24 AM Feature #7006 (Rejected): Add Enumerable#grouped_in as a each_slice without the block
- Indeed, `to_a` is the answer. Note that `ActiveSupport` has a similar `in_groups_of` that will return the results eve...
-
03:48 AM Feature #7006: Add Enumerable#grouped_in as a each_slice without the block
- This should work:
a = [1, 2, 3, 4].each_slice(2).to_a
I don't see a reason to create another method to do this. -
03:34 AM Feature #7006 (Rejected): Add Enumerable#grouped_in as a each_slice without the block
- I'd like to transform [1, 2, 3, 4] into [[1, 2], [3, 4]].
Currently I can use something like:
a = []; [1, 2, 3,... -
11:49 PM Bug #7005: NKF: CP50221 から CP932 に変換できない文字がある
- NKF の問題だったので NKF のフォーラムに投稿しました。
http://sourceforge.jp/forum/forum.php?thread_id=32783&forum_id=1007 -
11:22 PM Revision 5d62cf13 (git): * lib/shellwords.rb: Documentation for Shellwords.
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- 11:04 PM Revision 54de5e3f (git): * 2012-09-13
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
11:04 PM Revision 8f0d172f (git): * ext/ripper/lib/ripper.rb: Documentation for Ripper.
- * ext/ripper/lib/ripper/lexer.rb: ditto.
* ext/ripper/lib/ripper/sexp.rb: ditto.
* ext/ripper/lib/ripper/filter.rb: d... -
10:54 PM Bug #6947 (Closed): Documentation for Pathname
- This issue was solved with changeset r36950.
Zachary, thank you for reporting this issue.
Your contribution to Ruby i... -
07:56 PM Bug #7009: Crash in method_missing
- This is a known issue, hard to fix. Patches are welcomed very much.
-
07:47 PM Bug #7009 (Closed): Crash in method_missing
- =begin
Given the following code:
def method_missing(sym, *args)
foo(sym, *args)
end
bar
When (({bar... -
07:23 PM Bug #7008 (Assigned): rake is crashing when trying to compile ffi gem
-
02:26 PM Bug #7008 (Rejected): rake is crashing when trying to compile ffi gem
- # uname -a
SunOS japet 5.10 Generic_142910-17 i86pc i386 i86pc
ruby is built from sources, -m64
# ruby -v
rub... -
02:16 PM Revision 857ec711 (git): pathname.c: suppress -Wcomment warning
- * ext/pathname/pathname.c (path_s_glob): get rid of "/*" within block
comment.
git-svn-id: svn+ssh://ci.ruby-lang.... -
01:59 PM Revision 6f50057b (git): vm_insnhelper.c: reuse VM stack
- * vm_insnhelper.c (vm_method_missing, vm_call_method): reuse arguments
on the VM stack and get rid of ALLOCA.
git-... - 01:54 PM Revision bed6c498 (git): * 2012-09-12
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
01:54 PM Revision b5c38622 (git): * ext/pathname/lib/pathname.rb: Documentation for Pathname.
- * ext/pathname/pathname.c: ditto.
[Bug #6947] [ruby-core:47354]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trun... -
12:40 PM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
- If you can agree with my opinion, Luis, please correct the patch
and commit it.
Or if you cannot agree by any means... -
12:36 PM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
- Most it's okay.
There is a problem in the last chunk.
Rather than filesystem encoding, I think that locale encodin... -
01:05 AM Bug #6990 (Assigned): test_s_random_bytes_without_openssl error on Windows x64
- I can confirm patch work.
Usa, do you have any objection with path?
Thank you.
-
12:23 AM Bug #6990: test_s_random_bytes_without_openssl error on Windows x64
- =begin
I can confirm that after reaching 1.9GB of RAM usage, it fails with:
"7e7e6cb0"
C:/Users/Worker/Code/ru... -
04:10 AM Feature #7007 (Closed): Make OpenStruct#new accept OpenStruct object
- Now we have OpenStruct.new(hash) method. But it can be more consistent if one can use it also in form OpenStruct.new(...
09/11/2012
-
11:12 PM Bug #7005: NKF: CP50221 から CP932 に変換できない文字がある
- Ruby 1.8.7 の ext/nkf を 1.9.3 で無理やりコンパイルしてみたところ問題なかったので
NKF のバージョンによるものなのかもしれません。 -
11:05 PM Bug #7005 (Closed): NKF: CP50221 から CP932 に変換できない文字がある
- NKF で CP50221 から CP932 に変換できない文字があります。
CP932 で 0xF040 から 0xF9FC までの文字のうち 589 文字が変換できません。
どうやら CP50221 で1バイト目が 0x80 ... -
12:03 PM Bug #6983 (Assigned): URI:HTTP accepts invalid uri
-
07:59 AM Bug #6994: yield plus splat unwraps too much
- 2012/9/9 headius (Charles Nutter) <[email protected]>:
> But this isn't consistent either, since the single-a... -
05:53 AM Bug #6997: Improve documentation for OptionParser
- Better and more examples are always welcome, if you have any ideas
please feel free to submit a patch.
Otherwise... -
05:02 AM Bug #6997: Improve documentation for OptionParser
- Ok, I was a bit blind on that,
I think that I now do understand how it works.
But anyway, the documentation shoul... -
02:44 AM Feature #6647: Exceptions raised in threads should be logged
- Any update on this?
- 12:44 AM Revision 4893e6ab (git): * 2012-09-11
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
12:44 AM Revision 9445ab2d (git): mkmf.rb: fix $LDFLAGS
- * lib/mkmf.rb (have_framework): insert a space between options.
add just one -ObjC option.
git-svn-id: svn+ssh://c...
Also available in: Atom