merge revision(s) r44549: [Backport #9387]

* range.c (Range#size): [DOC] improve description and add examples.
	  Patch by @skade. [Fixes GH-501]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@45013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2014-02-16 16:59:09 +00:00
parent 954b828183
commit 9d6dd89400
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Mon Feb 17 01:57:45 2014 Benoit Daloze <eregontp@gmail.com>
* range.c (Range#size): [DOC] improve description and add examples.
Patch by @skade. [Fixes GH-501]
Mon Feb 17 01:51:49 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/webrick/htmlutils.rb (WEBrick::HTMLUtils#escape): replace HTML

View file

@ -696,9 +696,12 @@ sym_each_i(VALUE v, void *arg)
* call-seq:
* rng.size -> num
*
* Returns the number of elements in the range.
* Returns the number of elements in the range. Both the begin and the end of
* the Range must be Numeric, otherwise nil is returned.
*
* (10..20).size #=> 11
* ('a'..'z').size #=> nil
* (-Float::INFINITY..Float::INFINITY).size #=> Infinity
*/
static VALUE

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-02-17"
#define RUBY_PATCHLEVEL 431
#define RUBY_PATCHLEVEL 432
#define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 2