Skip to content

Instantly share code, notes, and snippets.

@cwgem
Created July 27, 2011 21:38
Show Gist options
  • Save cwgem/1110432 to your computer and use it in GitHub Desktop.
Save cwgem/1110432 to your computer and use it in GitHub Desktop.
tap使用例その2
# encoding: UTF-8
Dir.glob("*").tap {|files|
files = []
}.each {|filename|
puts "ファイル情報: 【名前】 #{filename} 【サイズ】 #{File.stat(filename).size}"
}
# ファイル情報: 【名前】 binding.rb 【サイズ】 46
# ファイル情報: 【名前】 block_test.rb 【サイズ】 137
# ファイル情報: 【名前】 erb_testing.rb 【サイズ】 109
# ファイル情報: 【名前】 symbol_test.rb 【サイズ】 271
# ファイル情報: 【名前】 tap.rb 【サイズ】 218
# ファイル情報: 【名前】 unit_test.rb 【サイズ】 477
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment