merge revision(s) 50406,50407: [Backport #11075]

* rational.c: Added documentation for rational literal.
	  [Bug #11075][fix GH-885][ci skip] Patch by @shishir127


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@50627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2015-05-23 18:35:37 +00:00
parent 3a35a8e9dc
commit 9d3a9e97c0
3 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Sun May 24 03:32:53 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* rational.c: Added documentation for rational literal.
[Bug #11075][fix GH-885][ci skip] Patch by @shishir127
Sun May 24 03:06:20 2015 Nobuyoshi Nakada <nobu@ruby-lang.org> Sun May 24 03:06:20 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/socket/ipsocket.c (init_inetsock_internal): preserve errno * ext/socket/ipsocket.c (init_inetsock_internal): preserve errno

View file

@ -2465,13 +2465,14 @@ nurat_s_convert(int argc, VALUE *argv, VALUE klass)
* a/b (b>0). Where a is numerator and b is denominator. Integer a * a/b (b>0). Where a is numerator and b is denominator. Integer a
* equals rational a/1 mathematically. * equals rational a/1 mathematically.
* *
* In ruby, you can create rational object with Rational, to_r or * In ruby, you can create rational object with Rational, to_r,
* rationalize method. The return values will be irreducible. * rationalize method or suffixing r to a literal. The return values will be irreducible.
* *
* Rational(1) #=> (1/1) * Rational(1) #=> (1/1)
* Rational(2, 3) #=> (2/3) * Rational(2, 3) #=> (2/3)
* Rational(4, -6) #=> (-2/3) * Rational(4, -6) #=> (-2/3)
* 3.to_r #=> (3/1) * 3.to_r #=> (3/1)
* 2/3r #=> (2/3)
* *
* You can also create rational object from floating-point numbers or * You can also create rational object from floating-point numbers or
* strings. * strings.

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.2.3" #define RUBY_VERSION "2.2.3"
#define RUBY_RELEASE_DATE "2015-05-24" #define RUBY_RELEASE_DATE "2015-05-24"
#define RUBY_PATCHLEVEL 123 #define RUBY_PATCHLEVEL 124
#define RUBY_RELEASE_YEAR 2015 #define RUBY_RELEASE_YEAR 2015
#define RUBY_RELEASE_MONTH 5 #define RUBY_RELEASE_MONTH 5