Created
July 27, 2011 21:38
-
-
Save cwgem/1110432 to your computer and use it in GitHub Desktop.
tap使用例その2
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| | |
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