[#9722] Kernel#system broken inside Dir.chdir(&block) if system command doesn't have shell characters — <noreply@...>

Bugs item #7278, was opened at 2006-12-14 13:59

8 messages 2006/12/14

[#9749] System V IPC in standard library? — Steven Jenkins <steven.jenkins@...>

Back in August, I needed a semaphore to serialize access to an external

14 messages 2006/12/19

[#9753] CVS freeze — SASADA Koichi <ko1@...>

Hi,

20 messages 2006/12/20
[#9755] Re: [ruby-dev:30039] CVS freeze — SASADA Koichi <ko1@...> 2006/12/20

Hi,

[#9757] Re: [ruby-dev:30040] Re: CVS freeze — SASADA Koichi <ko1@...> 2006/12/20

Hi,

Re: [ ruby-Bugs-7045 ] Bigdecimal isn't comparable

From: "Arnaud Bergeron" <abergeron@...>
Date: 2006-12-04 20:03:08 UTC
List: ruby-core #9665
On 12/4/06, noreply@rubyforge.org <noreply@rubyforge.org> wrote:
> Bugs item #7045, was opened at 2006-12-04 19:20
> You can respond by visiting:
> http://rubyforge.org/tracker/?func=detail&atid=1698&aid=7045&group_id=426
>
> Category: Standard Library
> Group: 1.8.5
> Status: Open
> Resolution: None
> Priority: 3
> Submitted By: Ondrej Bilka (eirik)
> Assigned to: Nobody (None)
> Summary: Bigdecimal isn't comparable
>
> Initial Comment:
> irb(main):001:0> require 'bigdecimal'
> => true
> irb(main):002:0> RUBY_VERSION
> => "1.8.5"
> irb(main):003:0> BigDecimal.is_a? Comparable
> => false
> Quite unexpected
>
> ----------------------------------------------------------------------
>
> You can respond by visiting:
> http://rubyforge.org/tracker/?func=detail&atid=1698&aid=7045&group_id=426
>

The class itself is not Comparable, this is expected.  But istances of
this class are Comparable:

irb(main):007:0> BigDecimal.new("1").is_a? Comparable
=> true

-- 
I'm trying to launch the internet; so I open a terminal and go
"percent sign 'Internet'" at the prompt and it doesn't work. What
gives??!! -- random troll

In This Thread