<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/README, branch master</title>
<subtitle>Ruby GIT repository</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/'/>
<entry>
<title>	* lib/complex.rb, lib/rational.rb: added warning messages.</title>
<updated>2009-08-16T15:18:58+00:00</updated>
<author>
<name>tadf</name>
<email>tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2009-08-16T15:18:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=6b36781f0299cda260b3bc2f576023511a3842a4'/>
<id>6b36781f0299cda260b3bc2f576023511a3842a4</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/README: updated.  a patch from Daniel Bovensiepen.</title>
<updated>2009-08-03T08:07:11+00:00</updated>
<author>
<name>matz</name>
<email>matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2009-08-03T08:07:11+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=4aedfef6aba289997931d1905214185c9ea3f43d'/>
<id>4aedfef6aba289997931d1905214185c9ea3f43d</id>
<content type='text'>
  [ruby-core:24693]

git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24368 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  [ruby-core:24693]

git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24368 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/mathn.rb (Integer): moved into prime.rb.</title>
<updated>2008-09-03T13:57:21+00:00</updated>
<author>
<name>yugui</name>
<email>yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2008-09-03T13:57:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=6f93bf77c448e4a2aed8ea2656726fd6bd90a725'/>
<id>6f93bf77c448e4a2aed8ea2656726fd6bd90a725</id>
<content type='text'>
  (Prime): ditto.

* lib/prime.rb (Integer): moved from mathn.rb.
  (Integer.each_prime): added.
  (Integer#prime?): added.
  (Prime): moved from mathn.rb.
    Its implmentation was rewritten. see [ruby-dev:35863].
    And patched by Keiju ISHITSUKA &lt;keiju@ishitsuka.com&gt;,
    see [ruby-dev:36128].
  (Prime.new):                     obsolete.
  (Prime.instance):                added.
  (Prime.each):                    added.
  (Prime.int_from_prime_division): added.
  (Prime.prime_division):          added.
  (Prime.prime?):                  added.
    Patch by TOYOFUKU Chikanobu
    &lt;nobu_toyofuku at nifty.com&gt; in [ruby-dev:36067].
  (Prime.cache):                   removed.
  (Prime.primes):                  removed.
  (Prime.primes_so_far):           removed.
  (Prime#int_from_prime_division): added.
  (Prime#prime_division):          added.
  (Prime#prime?):                  added.
  (Prime#primes):                  removed.
  (Prime#primes_so_far):           removed.
  (Prime::PseudoPrmeGenerator):    added.
  (Prime::EratosthenesGenerator):  added.
  (Prime::TrialDivisionGenerator): added.
  (Prime::Generator23):            added.
  (Prime::TrialDivision):          added.
    Extracted from the previous implementation of Prime
    by Keiju ISHITSUKA.
  (Prime::EratosthenesSieve):      added.

* lib/.document (prime.rb): added

* lib/README (prime.rb): added

* test/test_prime.rb: added.

git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  (Prime): ditto.

* lib/prime.rb (Integer): moved from mathn.rb.
  (Integer.each_prime): added.
  (Integer#prime?): added.
  (Prime): moved from mathn.rb.
    Its implmentation was rewritten. see [ruby-dev:35863].
    And patched by Keiju ISHITSUKA &lt;keiju@ishitsuka.com&gt;,
    see [ruby-dev:36128].
  (Prime.new):                     obsolete.
  (Prime.instance):                added.
  (Prime.each):                    added.
  (Prime.int_from_prime_division): added.
  (Prime.prime_division):          added.
  (Prime.prime?):                  added.
    Patch by TOYOFUKU Chikanobu
    &lt;nobu_toyofuku at nifty.com&gt; in [ruby-dev:36067].
  (Prime.cache):                   removed.
  (Prime.primes):                  removed.
  (Prime.primes_so_far):           removed.
  (Prime#int_from_prime_division): added.
  (Prime#prime_division):          added.
  (Prime#prime?):                  added.
  (Prime#primes):                  removed.
  (Prime#primes_so_far):           removed.
  (Prime::PseudoPrmeGenerator):    added.
  (Prime::EratosthenesGenerator):  added.
  (Prime::TrialDivisionGenerator): added.
  (Prime::Generator23):            added.
  (Prime::TrialDivision):          added.
    Extracted from the previous implementation of Prime
    by Keiju ISHITSUKA.
  (Prime::EratosthenesSieve):      added.

* lib/.document (prime.rb): added

* lib/README (prime.rb): added

* test/test_prime.rb: added.

git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>use hard tab.</title>
<updated>2008-01-02T01:46:26+00:00</updated>
<author>
<name>tadf</name>
<email>tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2008-01-02T01:46:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=8987242f18f0d4c8213a84f3c7be4f83183d6067'/>
<id>8987242f18f0d4c8213a84f3c7be4f83183d6067</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14843 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14843 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>Mon Dec 24 23:04:57 2007  NAKAMURA, Hiroshi  &lt;nahi@ruby-lang.org&gt;</title>
<updated>2007-12-24T14:09:57+00:00</updated>
<author>
<name>nahi</name>
<email>nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2007-12-24T14:09:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=ef116555f5eb0439ccdded85cb77ea310b76dbd2'/>
<id>ef116555f5eb0439ccdded85cb77ea310b76dbd2</id>
<content type='text'>
        * lib/ftools.rb: removed obsoleted lib.  use fileutils instead (by eban).

        * lib/rdoc/rdoc.rb, lib/rdoc/generators/*, lib/rake.rb: let it use
          fileutils instead of ftools.

        * lib/shell/command-processor.rb: removed unused references to ftools.

        * lib/parsedate.rb: removed.  see [ruby-core:12535], [ruby-dev:31969].

        * lib/README: updated.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
        * lib/ftools.rb: removed obsoleted lib.  use fileutils instead (by eban).

        * lib/rdoc/rdoc.rb, lib/rdoc/generators/*, lib/rake.rb: let it use
          fileutils instead of ftools.

        * lib/shell/command-processor.rb: removed unused references to ftools.

        * lib/parsedate.rb: removed.  see [ruby-core:12535], [ruby-dev:31969].

        * lib/README: updated.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/ping.rb, lib/readbytes.rb: removed</title>
<updated>2007-12-17T21:05:25+00:00</updated>
<author>
<name>matz</name>
<email>matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2007-12-17T21:05:25+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=8d1714e409b7a6744b9b8871e7789ae29c8e2eb8'/>
<id>8d1714e409b7a6744b9b8871e7789ae29c8e2eb8</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/Env.rb, lib/base64.rb, lib/importenv.rb, lib/eregex.rb: removed.</title>
<updated>2007-12-17T20:58:34+00:00</updated>
<author>
<name>matz</name>
<email>matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2007-12-17T20:58:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=d88eda62dfb16dd61e90a7ec1de5a8d402e4c57e'/>
<id>d88eda62dfb16dd61e90a7ec1de5a8d402e4c57e</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/README: remove jcode.rb</title>
<updated>2007-12-01T13:26:01+00:00</updated>
<author>
<name>matz</name>
<email>matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2007-12-01T13:26:01+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=84315c9926a89580f1753ce0de9f565d93cc8388'/>
<id>84315c9926a89580f1753ce0de9f565d93cc8388</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>added a note.</title>
<updated>2007-08-05T04:10:51+00:00</updated>
<author>
<name>tadf</name>
<email>tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2007-08-05T04:10:51+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=57e301ff6bcd2be3baac53476a97484bd11ede14'/>
<id>57e301ff6bcd2be3baac53476a97484bd11ede14</id>
<content type='text'>
fixed a typo.



git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixed a typo.



git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>removed.</title>
<updated>2006-12-30T15:49:29+00:00</updated>
<author>
<name>tadf</name>
<email>tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2006-12-30T15:49:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/kanarip/public_git/ruby.git/commit/?id=7a807e1f098f1e813ec054ddca87506278283845'/>
<id>7a807e1f098f1e813ec054ddca87506278283845</id>
<content type='text'>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
