Activity
From 09/13/2012 to 09/19/2012
09/19/2012
-
11:47 PM Feature #7019: allow `private` and `protected` keywords to take blocks
- Would need to accept array of those too (whether its a method or symbol) for things like:
~~~ruby
private attr_ac... -
11:43 PM Feature #6669: A method like Hash#map but returns hash
- > * mash
> Such a created word is not good.
I think when no other choices suffice one is left with two options, e... -
04:15 PM Feature #6669: A method like Hash#map but returns hash
- Please ignore my previous comment; I see that you want a new Hash rather than replacing the keys/values of the existi...
-
03:09 PM Feature #6669: A method like Hash#map but returns hash
- What about #map! (or are bang methods frowned upon these days)?
-
02:30 PM Feature #6669: A method like Hash#map but returns hash
- What about #remap
#select and #reject only change the number of k/v pairs and do not change the mapping.
Compared t... -
11:32 PM Bug #6441: IO.pipe on ENFILE
- どこから mark されてるんだろうかと追跡してみたところ
mark_current_machine_context() の rb_gc_mark_locations() から、つまり machine stack からでした。
... -
09:25 PM Bug #6441: IO.pipe on ENFILE
- どうも IO.pipe で最後に開いた IO 2つは GC.start で手動で GC を実行しても回収されないみたいです。
$ ruby -ve 'GC.start;loop{IO.pipe.tap{|i|p i}.clea... -
05:53 PM Bug #6441: IO.pipe on ENFILE
- shyouhei (Shyouhei Urabe) wrote:
> authorNari (Narihiro Nakamura) wrote:
> > naruse (Yui NARUSE) wrote:
> > > 今の R... -
10:46 PM Bug #7038 (Closed): Array#zip に配列以外のオブジェクトを指定した場合の例外がわかり辛い
- =begin
1.9 以降でArray#zip に配列以外のオブジェクトを指定した場合の例外が NoMethodError ではわかり辛いのではないかと思います。
$ ruby -ve 'p [1,2,3].zip(1)'... -
10:23 PM Revision 7c4d0468 (git): * complex.c: Examples for Complex Documentation.
- Patch by Robin Dupret.
Fixes #184 on github.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36993 b2dd03c8-39d... -
10:17 PM Revision cca61daf (git): * ext/ripper/lib/ripper.rb: Documentation for Ripper.
- +:void_stmt+ is meaningless
[Bug #6929] [ruby-core:47507]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36992... -
10:07 PM Revision 0503756f (git): * lib/csv.rb (Object#CSV, Array#to_csv, String#parse_csv):
- Examples and documentation for CSV.
[Bug #6880] [ruby-core:47218]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tru... -
08:08 PM Bug #7037: float formatting inconsistently rounds half to even
- Sorry, it's my bad.
Indeed, "half even" not "half up".
-
06:05 PM Bug #7037: float formatting inconsistently rounds half to even
- I can't under stand what @nobu says so I did this myself.
@headius mixed two points.
* 1.15 for instance is not... -
05:13 PM Bug #7037 (Closed): float formatting inconsistently rounds half to even
- =begin
Just formats the value with full precision and "rounds half up" the next char.
(gdb) printf "%.17f\n", 1.... -
04:05 PM Bug #7037 (Closed): float formatting inconsistently rounds half to even
- MRI does not appear to consistently round half to even. I'm not sure what rounding strategy this is, but it rounds xx...
-
07:53 PM Feature #6668: Multiple assignment should not return an Array object
- (2012/09/19 0:08), headius (Charles Nutter) wrote:
> This is an artifact of MRI's implementation, since multiple a... -
04:08 PM Feature #6668: Multiple assignment should not return an Array object
- Ping!
-
06:35 PM Bug #7031: Date::mjd_to_jd disappeared
- thanks for your lecture.
foolish man who doesn't know details
make me irritated. -
01:36 PM Bug #7031: Date::mjd_to_jd disappeared
- Well, what's done is done. One cannot put the toothpaste back in the tube. It looks like "wew" (William Webber, I p...
-
07:49 AM Bug #7031: Date::mjd_to_jd disappeared
- the latest 1.8 documentation is by William Webber.
he wanted to describe nearly all even private.
he should have re... -
02:57 AM Bug #7031: Date::mjd_to_jd disappeared
- Removing undocumented methods that have "escaped into the wild" is reasonable, but since these well documented method...
-
04:36 PM Feature #905: Add String.new(fixnum) to preallocate large buffer
- Just a technical comment, not for the feature itself:
headius (Charles Nutter) wrote:
> to by ptr, realloc()... -
04:17 PM Feature #905: Add String.new(fixnum) to preallocate large buffer
- Trying to wake this beast up...
mame: I don't think we can say it would not help MRI without testing an implementa... -
04:09 PM Feature #6648: Provide a standard API for retrieving all command-line flags passed to Ruby
- ARGV is a special class; perhaps ARGV could have the methods?
-
04:07 PM Bug #6994: yield plus splat unwraps too much
- Ok, I accept the explanation. We will support the MRI behavior in JRuby.
- 03:42 PM Revision f205ac49 (git): * 2012-09-20
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
03:42 PM Revision abeedb08 (git): array.c, enum.c: TypeError in zip
- * array.c (take_items), enum.c (enum_zip): raise TypeError at
non-enumerable objects, not NoMethodError. [ruby-dev... - 02:49 PM Revision b70f99d1 (git): * 2012-09-19
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
02:49 PM Revision 18181542 (git): suppress warnings
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
09/18/2012
-
11:47 PM Feature #7019: allow `private` and `protected` keywords to take blocks
- headius (Charles Nutter) wrote:
> +1 for "`private def foo`". I have never seen a good justification for why visibil... -
11:38 PM Feature #7019: allow `private` and `protected` keywords to take blocks
- +1 for "`private def foo`". I have never seen a good justification for why visibility is better as a value on the cur...
-
11:50 AM Feature #7019: allow `private` and `protected` keywords to take blocks
- I don't know why you would expect this to work, `private`, `public`, etc. are methods on `Module` and your context is...
-
04:36 AM Feature #7019: allow `private` and `protected` keywords to take blocks
- Here is a usecase i have made up. The following does not work now:
~~~ruby
class C
def f
def g
#
... -
11:04 PM Bug #7036: Compiling extensions with Ruby in a path with spaces
- usa (Usaku NAKAMURA) wrote:
> Building something with the path containing spaces is not recommended, IMO.
> (see th... -
03:32 PM Bug #7036 (Assigned): Compiling extensions with Ruby in a path with spaces
- Building something with the path containing spaces is not recommended, IMO.
(see the end of win32/README.win32)
O... -
07:18 AM Bug #7036 (Closed): Compiling extensions with Ruby in a path with spaces
- =begin
Hello,
This has been reported several times to RubyInstaller: inability to install gems when Ruby has been... -
08:24 PM Bug #7031 (Rejected): Date::mjd_to_jd disappeared
- is just for internal use and debugging.
try the following code.
class Date
MJD_EPOCH_IN_CJD = 2400001
def... -
03:23 PM Feature #5481: Gemifying Ruby standard library
- NaHi, could you tell us status of this work?
If you doesn't have a time to implement it, I'll implement it.
NOTE:... -
10:18 AM Bug #6441: IO.pipe on ENFILE
- authorNari (Narihiro Nakamura) wrote:
> naruse (Yui NARUSE) wrote:
> > 今の Ruby は open(2) などで、errno=ENFILE が発生した場合、
... - 08:52 AM Revision aab70ee3 (git): * 2012-09-18
- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-
08:52 AM Revision e8854f8c (git): * ext/openssl/ossl_ssl.c (ossl_sslctx_attrs): add npn_select_db to
- suppress warning: instance variable @npn_select_cb not initialized
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk... -
04:06 AM Feature #7035: defined? should return cached, frozen strings
- > I like the idea.
I like it too. -
04:00 AM Feature #7035: defined? should return cached, frozen strings
- =begin
I like the idea.
Considering recent changes like (({respond_to?})) and protected methods, I think this cha... -
03:22 AM Feature #7035: defined? should return cached, frozen strings
- IMO, I think it should be fine for `defined?` to return a symbol in Ruby 2.0.0, if that really going to fix the alloc...
-
02:57 AM Feature #7035 (Closed): defined? should return cached, frozen strings
- Yehuda and I have been looking into allocation rates in Rails under both MRI and JRuby, and one of the big standouts ...
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...
Also available in: Atom