fridim (Guillaume Coré)
- Login: fridim
- Email: guillaume.core@gmail.com
- Registered on: 08/18/2010
- Last sign in: 08/19/2010
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/20/2010
-
10:37 AM Ruby Bug #3724: instance_variables comparison not working with symbol ?
- =begin
OK. it's because I enabled Wirble in IRB! I should report this to Wirble instead :)
ruby-1.9.1-p378 > a = :@ok
=> :ok
My bad
=end
-
10:31 AM Ruby Bug #3724 (Third Party's Issue): instance_variables comparison not working with symbol ?
- =begin
ruby-1.9.1-p378 > class A; attr_accessor :ok; end
=> nil
ruby-1.9.1-p378 > a = A.new
=> #<A:0x8d2b0b8>
ruby-1.9.1-p378 > a.ok = 2
=> 2
ruby-1.9.1-p378 > a.instance_variables
=> [:ok]
ruby-1.9.1-p378 > a.in...