mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/pp.rb (Struct#pretty_print): coerce to a string since
anonymous class has name no longer. [ruby-dev:38349] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fbcde451c5
commit
46f23b51f6
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Apr 28 07:13:48 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/pp.rb (Struct#pretty_print): coerce to a string since
|
||||
anonymous class has name no longer. [ruby-dev:38349]
|
||||
|
||||
Mon Apr 27 16:47:12 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (ruby_version): uses sed instead of grep if the
|
||||
|
|
|
@ -361,7 +361,7 @@ end
|
|||
|
||||
class Struct
|
||||
def pretty_print(q)
|
||||
q.group(1, '#<struct ' + PP.mcall(self, Kernel, :class).name, '>') {
|
||||
q.group(1, sprintf("#<struct %s", PP.mcall(self, Kernel, :class).name), '>') {
|
||||
q.seplist(PP.mcall(self, Struct, :members), lambda { q.text "," }) {|member|
|
||||
q.breakable
|
||||
q.text member.to_s
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.2"
|
||||
#define RUBY_RELEASE_DATE "2009-04-27"
|
||||
#define RUBY_RELEASE_DATE "2009-04-28"
|
||||
#define RUBY_PATCHLEVEL -1
|
||||
#define RUBY_BRANCH_NAME "trunk"
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
#define RUBY_VERSION_TEENY 1
|
||||
#define RUBY_RELEASE_YEAR 2009
|
||||
#define RUBY_RELEASE_MONTH 4
|
||||
#define RUBY_RELEASE_DAY 27
|
||||
#define RUBY_RELEASE_DAY 28
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue