Kensuke Nagae

Results 11 issues of Kensuke Nagae

Hi @jamesotron, I would like to add `bin/hamlbars` command as a utility. This is similar to https://github.com/jamesotron/hamlbars/issues/66. Original script is taken from https://github.com/hrysd/grunt-hamlbars, created by @hrysd. (I opened pull request...

Hi @elinaldosoft, I noticed that there is an inconsistency between the Git tag 0.1 and the package published at PyPI. While Git tag 0.1 contains a bug fix commit https://github.com/elinaldosoft/ddquery/commit/69e8589c5c997bc9b66a5b4b390931a704a66595,...

Hi, I'd like to propose changing color of "Started" notification to yellow. Since "Green" represents "all is well", I'm often mistaken that "Build Started" notification is "Build Success". Other types...

- Remove all runtime dependencies - Packaging to single script by rake task

Some matchers of ResqueSpec shows expected arguments in failure message but not show actual arguments. This change adds actual arguments in failure message to make debugging test with ResqueSpec more...

Hi @kenn, `sunzi`'s CI failed with `ruby-head (3.2.0dev)`. https://github.com/kenn/sunzi/pull/45/checks?check_run_id=5319265537 That's because `sunzi` depends on older `thor` (v0.20.x), `thor` at that version uses `open-uri` internally, but `open-uri` was removed since Ruby...

Hi @kenn, I found a small syntax error in the `Vagrantfile ` example. Inner `end` shouldn't be there. ref: [Inline Scripts](https://www.vagrantup.com/docs/provisioning/shell#inline-scripts) ``` $ cat Vagrantfile # -*- mode: ruby -*-...

リトライ回数を Proc (block) の引数で受け取れるにしてみました。 logger オプションでもリトライ回数は確認できますが、ブロックの中で明示的にログを出す場合などに、何回目のリトライなのかという情報を使いたいことはしばしばあります。 Proc の外にカウンタ用のインスタンス変数を用意することもできますが、 Proc のなかに閉じているほうがかっこいいと思うので、引数で渡すようにしました。 具体的にはこのような使い方をしたいと思っています。 https://gist.github.com/4267917