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.5.4 test/ox/dir.rb
ox-1.5.3 test/ox/dir.rb
ox-1.5.2 test/ox/dir.rb
ox-1.5.1 test/ox/dir.rb
ox-1.5.0 test/ox/dir.rb
ox-1.4.6 test/ox/dir.rb
ox-1.4.5 test/ox/dir.rb
ox-1.4.4 test/ox/dir.rb
ox-1.4.3 test/ox/dir.rb
ox-1.4.2 test/ox/dir.rb
ox-1.4.1 test/ox/dir.rb
ox-1.4.0 test/ox/dir.rb
ox-1.3.5 test/ox/dir.rb
ox-1.3.4 test/ox/dir.rb
ox-1.3.3 test/ox/dir.rb
ox-1.3.2 test/ox/dir.rb
ox-1.3.1 test/ox/dir.rb
ox-1.3.0 test/ox/dir.rb
ox-1.2.15 test/ox/dir.rb
ox-1.2.14 test/ox/dir.rb