Created
July 27, 2011 21:23
-
-
Save cwgem/1110401 to your computer and use it in GitHub Desktop.
tap使用例
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: UTF-8 | |
Dir.glob("*").tap {|files| | |
puts "ファイル数: #{files.length}" | |
}.each {|filename| | |
puts "ファイル情報: 【名前】 #{filename} 【サイズ】 #{File.stat(filename).size}" | |
} | |
# ファイル数: 6 | |
# ファイル情報: 【名前】 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