Sha256: c9287c5f0d10c73440a136ce87a988883b2505f72562ba91813f92ba76f1378d

Contents?: true

Size: 496 Bytes

Versions: 273

Compression:

Stored size: 496 Bytes

Contents

#!/usr/bin/env ruby -wW2

if $0 == __FILE__
  $: << '.'
  $: << '..'
  $: << '../lib'
  $: << '../ext'
end

require 'pp'
require 'sample/file'
require 'sample/dir'

def files(dir)
  d = ::Sample::Dir.new(dir)
  Dir.new(dir).each do |fn|
    next if fn.start_with?('.')
    filename = File.join(dir, fn)
    #filename = '.' == dir ? fn : File.join(dir, fn)
    if File.directory?(filename)
      d << files(filename)
    else
      d << ::Sample::File.new(filename)
    end
  end
  #pp d
  d
end

Version data entries

273 entries across 273 versions & 4 rubygems

Version Path
oj-3.13.7 test/files.rb
oj-3.13.6 test/files.rb
oj-3.13.5 test/files.rb
oj-3.13.4 test/files.rb
oj-3.13.3 test/files.rb
oj-3.13.2 test/files.rb
oj-3.13.1 test/files.rb
oj-3.13.0 test/files.rb
oj-3.12.3 test/files.rb
oj-3.12.2 test/files.rb
oj-3.12.1 test/files.rb
oj-3.12.0 test/files.rb
oj-3.11.8 test/files.rb
oj-3.11.7 test/files.rb
oj-3.11.6 test/files.rb
oj-3.11.5 test/files.rb
oj-3.11.4 test/files.rb
oj-3.11.3 test/files.rb
oj-3.11.2 test/files.rb
oj-3.11.1 test/files.rb