Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/attic/files: attic-0.5.2-fixes.patch attic-0.5.0-fixes.patch
Date: Wed, 17 Feb 2010 16:11:14
Message-Id: E1NhmUa-0003Bh-MM@stork.gentoo.org
1 flameeyes 10/02/17 16:11:12
2
3 Added: attic-0.5.2-fixes.patch
4 Removed: attic-0.5.0-fixes.patch
5 Log:
6 Bump to released version and partly-merged fixes.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-ruby/attic/files/attic-0.5.2-fixes.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/attic/files/attic-0.5.2-fixes.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/attic/files/attic-0.5.2-fixes.patch?rev=1.1&content-type=text/plain
14
15 Index: attic-0.5.2-fixes.patch
16 ===================================================================
17 diff --git a/try/30_nometaclass_tryouts.rb b/try/30_nometaclass_tryouts.rb
18 index 0a07843..94f3ea8 100644
19 --- a/try/30_nometaclass_tryouts.rb
20 +++ b/try/30_nometaclass_tryouts.rb
21 @@ -30,13 +30,13 @@ tryouts "Basics" do
22 :any.metaclass?
23 end
24
25 - dream [:@___attic_name]
26 + dream ["@___attic_name"]
27 drill "A Symbol's attic vars appear in all_instance_variables" do
28 Symbol.extend Attic
29 Symbol.attic :name
30 a, b = :symbol1, :symbol2
31 a.name = :roger
32 - a.all_instance_variables
33 + a.all_instance_variables.collect { |x| x.to_s }
34 end
35
36 dream []