Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-05-02から1日間の記事一覧

TbpgrUtils | 追加要件 MarkdownString#codes 追加

概要 追加要件 MarkdownString#codes 追加 詳細 追加要件 MarkdownString#codes 仕様 ・Markdownの複数行コードを出力します ※より詳細についてはGitHubのREADMEおよびテストケース参照 GitHub https://github.com/tbpgr/tbpgr_utils Rubygems http://rubyge…

Ruby | Kernel | abort

概要 Kernel#abort 詳細 Ruby プログラムをエラーメッセージ付きで終了します。終了ステータスは 1 固定です。 サンプルコード # encoding: utf-8 require 'pp' begin abort "something error" rescue SystemExit => err pp err end 出力 something error #<SystemExit: something error></systemexit:>