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.11.0 test/files.rb
oj-3.10.18 test/files.rb
oj-3.10.17 test/files.rb
oj-3.10.16 test/files.rb
oj-3.10.15 test/files.rb
oj-3.10.14 test/files.rb
oj-3.10.13 test/files.rb
oj-3.10.12 test/files.rb
oj-3.10.11 test/files.rb
oj-3.10.10 test/files.rb
oj-3.10.9 test/files.rb
oj-3.10.8 test/files.rb
oj-3.10.7 test/files.rb
oj-3.10.6 test/files.rb
oj-3.10.5 test/files.rb
oj-3.10.3 test/files.rb
oj-3.10.2 test/files.rb
oj-3.10.1 test/files.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/oj-3.10.0/test/files.rb
oj-3.10.0 test/files.rb