Sha256: ad42fb3ac94d1cf56d491805364cc5e292c3b3805b1640b4ca5966e2d991e52c

Contents?: true

Size: 214 Bytes

Versions: 273

Compression:

Stored size: 214 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

273 entries across 273 versions & 4 rubygems

Version Path
oj-1.0.6 test/sample/dir.rb
oj-1.0.5 test/sample/dir.rb
oj-1.0.4 test/sample/dir.rb
oj-1.0.3 test/sample/dir.rb
ox-1.5.2 test/sample/dir.rb
oj-1.0.2 test/sample/dir.rb
oj-1.0.1 test/sample/dir.rb
oj-1.0.0 test/sample/dir.rb
ox-1.5.1 test/sample/dir.rb
oj-0.9.0 test/sample/dir.rb
ox-1.5.0 test/sample/dir.rb
oj-0.8.0 test/sample/dir.rb
oj-0.7.0 test/sample/dir.rb