Skip to content

Instantly share code, notes, and snippets.

@vitaly
Created August 18, 2009 20:34
Show Gist options
  • Save vitaly/169939 to your computer and use it in GitHub Desktop.
Save vitaly/169939 to your computer and use it in GitHub Desktop.
>> class Configuration
>> def self.files
>> @@files ||= Array.new
>> end
>> def self.inspect
>> @@files.inspect
>> end
>> end
=> nil
>> Configuration.files << 1
=> [1]
>> ^Dvitaly@sirius ~(master) $ irb
>> class Configuration
>> def self.files
>> @@files ||= Array.new
>> end
>> def self.inspect
>> @@files.inspect
>> end
>> end
=> nil
>> Configuration.files << 1 << 2 << 3
=> [1, 2, 3]
>> Configuration
=> [1, 2, 3]
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment