Sha256: 9e5357a04fc3886c701a5ea857d741f51d44b0b4a2f8292fdaadc43be4f2f4f4

Contents?: true

Size: 255 Bytes

Versions: 40

Compression:

Stored size: 255 Bytes

Contents

require 'etc'

module Test
  module Ox

    class Dir < File
      attr_accessor :files

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

    end # Dir
  end # Ox
end # Test

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
ox-1.2.13 test/ox/dir.rb
ox-1.2.12 test/ox/dir.rb
ox-1.2.11 test/ox/dir.rb
ox-1.2.10 test/ox/dir.rb
ox-1.2.9 test/ox/dir.rb
ox-1.2.8 test/ox/dir.rb
ox-1.2.7 test/ox/dir.rb
ox-1.2.6 test/ox/dir.rb
ox-1.2.5 test/ox/dir.rb
ox-1.2.4 test/ox/dir.rb
ox-1.2.3 test/ox/dir.rb
ox-1.2.2 test/ox/dir.rb
ox-1.2.1 test/ox/dir.rb
ox-1.2.0 test/ox/dir.rb
ox-1.1.1 test/ox/dir.rb
ox-1.1.0 test/ox/dir.rb
ox-1.0.3 test/ox/dir.rb
ox-1.0.2 test/ox/dir.rb
ox-1.0.1 test/ox/dir.rb
ox-1.0.0 test/ox/dir.rb