Sha256: 630e65ac329860c03ddbd692495ef77199dc323c98729d7a04de3721b02dfcac

Contents?: true

Size: 213 Bytes

Versions: 13

Compression:

Stored size: 213 Bytes

Contents

require 'etc'

module Sample

  class Dir < File
    attr_accessor :files

    def initialize(filename)
      super
      @files = []
    end
    
    def <<(f)
      @files << f
    end

  end # Dir
end # Sample

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
oj-3.16.9 test/sample/dir.rb
oj-3.16.8 test/sample/dir.rb
oj-3.16.7 test/sample/dir.rb
oj-3.16.6 test/sample/dir.rb
oj-3.16.5 test/sample/dir.rb
oj-3.16.4 test/sample/dir.rb
oj-3.16.3 test/sample/dir.rb
oj-3.16.2 test/sample/dir.rb
oj-3.16.1 test/sample/dir.rb
oj-3.16.0 test/sample/dir.rb
oj-3.15.1 test/sample/dir.rb
oj-3.15.0 test/sample/dir.rb
oj-3.14.3 test/sample/dir.rb