Skip to content

Commit c65eb7b

Browse files
committed
merge revision(s) r46241: [Backport ruby#9875]
* lib/erb.rb (result): [DOC] no longer accepts a Proc, as Kernel.eval does not. [fix rubyGH-619] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@47141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 58e57a7 commit c65eb7b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Mon Aug 11 23:55:32 2014 Mark Lorenz <[email protected]>
2+
3+
* lib/erb.rb (result): [DOC] no longer accepts a Proc, as
4+
Kernel.eval does not. [fix GH-619]
5+
16
Mon Aug 11 23:38:20 2014 Tanaka Akira <[email protected]>
27

38
* io.c (rb_io_autoclose_p): Don't raise on frozen IO.

lib/erb.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ def run(b=new_toplevel)
837837
# the results of that code. (See ERB::new for details on how this process
838838
# can be affected by _safe_level_.)
839839
#
840-
# _b_ accepts a Binding or Proc object which is used to set the context of
840+
# _b_ accepts a Binding object which is used to set the context of
841841
# code evaluation.
842842
#
843843
def result(b=new_toplevel)

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.2"
22
#define RUBY_RELEASE_DATE "2014-08-11"
3-
#define RUBY_PATCHLEVEL 199
3+
#define RUBY_PATCHLEVEL 200
44

55
#define RUBY_RELEASE_YEAR 2014
66
#define RUBY_RELEASE_MONTH 8

0 commit comments

Comments
 (0)