2013-01-01から1ヶ月間の記事一覧

tailコマンドをRubyで

tail -F だけやな #!/usr/bin/env ruby class Tail def initialize tailed_file, &blk check_file_validity(tailed_file) @tailed_file = tailed_file if block_given? @callback = blk else @callback = lambda {|s| STDOUT.write s } end end def follow s…

New Year's Ruby Meme 2012

TLにこんな記事が流れてきた。 http://blog.ziade.org/2012/12/23/new-years-python-meme-2012/ 年明けちゃったけど、おもしろそうなのでRubyでやってみよう。 1、What’s the coolest Ruby application, framework or library you have discovered in 2012 …