1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 54596:

* lib/irb/ext/save-history.rb: Fix NoMethodError when method is not defined.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-04-15 12:10:04 +00:00
parent 6fe4aa6ed7
commit 59d521ade4
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Fri Apr 15 21:10:00 2016 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* lib/irb/ext/save-history.rb: Fix NoMethodError when method is not defined.
Fri Apr 15 14:52:06 2016 Elliot Winkler <elliot.winkler@gmail.com>
* lib/forwardable.rb (def_instance_delegator) fix delegating to

View file

@ -27,7 +27,7 @@ module IRB
IRB.conf[:SAVE_HISTORY]
end
remove_method :save_history=
remove_method :save_history= if respond_to?(:save_history=)
# Sets <code>IRB.conf[:SAVE_HISTORY]</code> to the given +val+ and calls
# #init_save_history with this context.
#

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.0"
#define RUBY_RELEASE_DATE "2016-04-15"
#define RUBY_PATCHLEVEL 80
#define RUBY_PATCHLEVEL 81
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 4