[macruby-changes] [2143] MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational

source_changes at macosforge.org source_changes at macosforge.org
Sat Aug 1 20:43:46 PDT 2009


Revision: 2143
          http://trac.macosforge.org/projects/ruby/changeset/2143
Author:   lsansonetti at apple.com
Date:     2009-08-01 20:43:45 -0700 (Sat, 01 Aug 2009)
Log Message:
-----------
removing rational tags

Removed Paths:
-------------
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/Rational_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/abs_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/ceil_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/coerce_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/comparison_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/denominator_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/div_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divide_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divmod_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/equal_value_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/exponent_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/hash_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/inspect_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/minus_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/modulo_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/multiply_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/numerator_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/plus_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/quo_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_f_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_i_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_r_tags.txt
    MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_s_tags.txt

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/Rational_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/Rational_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/Rational_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,5 +0,0 @@
-fails:Rational() passed two arguments returns a Rational instance
-fails:Rational() passed two arguments sets the numerator to the first argument
-fails:Rational() passed two arguments sets the denominator to the second argument
-fails:Rational() passed two arguments automatically reduces the Rational
-fails:Rational() passed Integer returns a new Rational number with 1 as the denominator

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/abs_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/abs_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/abs_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#abs returns self's absolute value

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/ceil_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/ceil_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/ceil_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,2 +0,0 @@
-fails:Rational#ceil returns an Integer
-fails:Rational#ceil returns the smallest integer >= self as an integer

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/coerce_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/coerce_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/coerce_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,3 +0,0 @@
-fails:Rational#coerce returns the passed argument, self as Float, when given a Float
-fails:Rational#coerce returns the passed argument, self as Rational, when given an Integer
-fails:Rational#coerce returns [argument, self] when given a Rational

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/comparison_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/comparison_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/comparison_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,11 +0,0 @@
-fails:Rational#<=> when passed a Rational object returns 1 when self is greater than the passed argument
-fails:Rational#<=> when passed a Rational object returns 0 when self is equal to the passed argument
-fails:Rational#<=> when passed a Rational object returns -1 when self is less than the passed argument
-fails:Rational#<=> when passed a Integer object returns 1 when self is greater than the passed argument
-fails:Rational#<=> when passed a Integer object returns 0 when self is equal to the passed argument
-fails:Rational#<=> when passed a Integer object returns -1 when self is less than the passed argument
-fails:Rational#<=> when passed a Float object returns 1 when self is greater than the passed argument
-fails:Rational#<=> when passed a Float object returns 0 when self is equal to the passed argument
-fails:Rational#<=> when passed a Float object returns -1 when self is less than the passed argument
-fails:Rational#<=> when passed an Object that responds to #coerce calls #coerce on the passed argument with self
-fails:Rational#<=> when passed an Object that responds to #coerce calls #<=> on the coerced Rational with the coerced Object

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/denominator_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/denominator_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/denominator_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,2 +0,0 @@
-fails:Rational#denominator returns the denominator
-fails:Rational#denominator returns 1 if no denominator was given

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/div_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/div_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/div_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,11 +0,0 @@
-fails:Rational#div returns an Integer
-fails:Rational#div raises an ArgumentError if passed more than one argument
-fails:Rational#div raises a TypeError if passed a non-numeric argument
-fails:Rational#div passed a Rational performs integer division and returns the result
-fails:Rational#div passed a Rational raises a ZeroDivisionError when the argument has a numerator of 0
-fails:Rational#div passed a Rational raises a ZeroDivisionError when the argument has a numerator of 0.0
-fails:Rational#div passed an Integer performs integer division and returns the result
-fails:Rational#div passed an Integer raises a ZeroDivisionError when the argument is 0
-fails:Rational#div passed a Float performs integer division and returns the result
-fails:Rational#div passed a Float raises a FloatDomainError when the argument is 0.0
-fails:Rational#div passed a Float raises a ZeroDivisionError when the argument is 0.0

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divide_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divide_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divide_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,8 +0,0 @@
-fails:Rational#/ calls #coerce on the passed argument with self
-fails:Rational#/ calls #/ on the coerced Rational with the coerced Object
-fails:Rational#/ when passed an Integer returns self divided by other as a Rational
-fails:Rational#/ when passed an Integer raises a ZeroDivisionError when passed 0
-fails:Rational#/ when passed a Rational returns self divided by other as a Rational
-fails:Rational#/ when passed a Rational raises a ZeroDivisionError when passed a Rational with a numerator of 0
-fails:Rational#/ when passed a Float returns self divided by other as a Float
-fails:Rational#/ when passed a Float returns infinity when passed 0

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divmod_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divmod_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/divmod_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,8 +0,0 @@
-fails:Rational#divmod when passed a Rational returns the quotient as Integer and the remainder as Rational
-fails:Rational#divmod when passed a Rational raises a ZeroDivisonError when passed a Rational with a numerator of 0
-fails:Rational#divmod when passed an Integer returns the quotient as Integer and the remainder as Rational
-fails:Rational#divmod when passed an Integer raises a ZeroDivisionError when passed 0
-fails:Rational#divmod when passed a Float returns the quotient as Integer and the remainder as Float
-fails:Rational#divmod when passed a Float returns the quotient as Integer and the remainder as Float
-fails:Rational#divmod when passed a Float raises a FloatDomainError when passed 0
-fails:Rational#divmod when passed a Float raises a ZeroDivisionError when passed 0

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/equal_value_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/equal_value_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/equal_value_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,4 +0,0 @@
-fails:Rational#== returns the result of calling #== with self on the passed argument
-fails:Rational#== when passed a Rational returns true if self has the same numerator and denominator as the passed argument
-fails:Rational#== when passed a Float converts self to a Float and compares it with the passed argument
-fails:Rational#== when passed an Integer returns true if self has the passed argument as numerator and a denominator of 1

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/exponent_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/exponent_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/exponent_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,13 +0,0 @@
-fails:Rational#** calls #coerce on the passed argument with self
-fails:Rational#** calls #** on the coerced Rational with the coerced Object
-fails:Rational#** when passed Rational returns self raised to the argument as a Rational if possible
-fails:Rational#** when passed Rational returns self raised to the argument as a Float if necessary
-fails:Rational#** when passed Rational returns NaN when self is negative and the passed argument is not 0
-fails:Rational#** when passed Float returns self converted to Float and raised to the passed argument
-fails:Rational#** when passed Float returns 1.0 when the passed argument is 0
-fails:Rational#** when passed Float returns NaN if self is negative and the passed argument is not 0
-fails:Rational#** when pass Integer returns the Rational value of self raised to the passed argument
-fails:Rational#** when pass Integer returns Rational(1, 1) when the passed argument is 0
-fails:Rational#** when passed Rational returns a complex number when self is negative and the passed argument is not 0
-fails:Rational#** when passed Float returns a complex number if self is negative and the passed argument is not 0
-fails:Rational#** when passed Float returns Complex(1.0) when the passed argument is 0.0

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/hash_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/hash_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/hash_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#hash is static

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/inspect_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/inspect_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/inspect_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#inspect returns a string representation of self

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/minus_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/minus_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/minus_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,2 +0,0 @@
-fails:Rational#- calls #coerce on the passed argument with self
-fails:Rational#- calls #- on the coerced Rational with the coerced Object

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/modulo_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/modulo_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/modulo_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,4 +0,0 @@
-fails:Rational#% returns the remainder when this value is divided by other
-fails:Rational#% returns a Float value when the argument is Float
-fails:Rational#% raises ZeroDivisionError on zero denominator
-fails:Rational#% raises FloatDomainError when the argument is 0.0

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/multiply_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/multiply_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/multiply_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,5 +0,0 @@
-fails:Rational#* calls #coerce on the passed argument with self
-fails:Rational#* calls #* on the coerced Rational with the coerced Object
-fails:Rational#* passed a Rational returns self divided by other as a Rational
-fails:Rational#* passed a Float returns self divided by other as a Float
-fails:Rational#* passed an Integer returns self divided by other as a Rational

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/numerator_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/numerator_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/numerator_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#numerator returns the numerator

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/plus_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/plus_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/plus_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,5 +0,0 @@
-fails:Rational#+ calls #coerce on the passed argument with self
-fails:Rational#+ calls #+ on the coerced Rational with the coerced Object
-fails:Rational#+ with a Rational returns the result of substracting other from self as a Rational
-fails:Rational#+ with a Float returns the result of substracting other from self as a Float
-fails:Rational#+ with an Integer returns the result of substracting other from self as a Rational

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/quo_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/quo_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/quo_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,2 +0,0 @@
-fails:Rational#quo calls #coerce on the passed argument with self
-fails:Rational#quo calls #/ on the coerced Rational with the coerced Object

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_f_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_f_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_f_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#to_f returns self converted to a Float

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_i_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_i_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_i_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1,2 +0,0 @@
-fails:Rational#to_i converts self to an Integer by truncation
-fails:Rational#to_i converts self to an Integer by truncation

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_r_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_r_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_r_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#to_r returns self

Deleted: MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_s_tags.txt
===================================================================
--- MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_s_tags.txt	2009-08-02 03:42:12 UTC (rev 2142)
+++ MacRuby/branches/experimental/spec/frozen/tags/macruby/core/rational/to_s_tags.txt	2009-08-02 03:43:45 UTC (rev 2143)
@@ -1 +0,0 @@
-fails:Rational#to_s returns a string representation of self
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090801/60fc172f/attachment-0001.html>


More information about the macruby-changes mailing list