Ishotihadus
Ishotihadus
I think the code is intended to use `pm_cwd` as a current working directory if `targetApp.cwd` is not specified. https://github.com/vmarchaud/pm2-githook/blob/9774c8b77a2b3d01d52c47b678429d6f33da9495/index.js#L129 But `execOptions` is not updated in this process, so an...
The function `gracefulReload` no longer exists. https://github.com/vmarchaud/pm2-githook/blob/9774c8b77a2b3d01d52c47b678429d6f33da9495/index.js#L147 I think this function is merged with `reload`. See: https://github.com/Unitech/pm2/issues/4426
In GitHub webhook, `ref` field does not start with `/` such as ```json { "ref": "refs/heads/v2", ... } ``` https://github.com/vmarchaud/pm2-githook/blob/9774c8b77a2b3d01d52c47b678429d6f33da9495/index.js#L279 ```js var regex = new RegExp('/refs/heads/' + targetApp.branch) ``` should...
`TagLib::MP4::Tag#[]=` sometimes fails even if the same actions often success. ``` irb(main):001:0> require 'taglib' => true irb(main):002:0> f = TagLib::MP4::File.new('test.m4a') => # irb(main):003:0> f.tag['©lyr'] = TagLib::MP4::Item.from_string_list(['a']) => # irb(main):004:0> f.tag['©lyr']...
This problem appears with all input methods (including the default English input method and AquaSKK). I think the N key is handled even if the post form is opened. In...
This PR will add support to decorate methods with block arguments. For example: ```rb require 'adornable' class Test extend Adornable decorate :log def foo(value) yield(value) end end test = Test.new...
Hello. This library is very cool and convenient, and I use it in my project. I'm wondering how to decorate a method that receives a block. For example: ```rb require...
いつもありがたく使わせていただいております。 現状、補完はユーザ辞書の内容のみが出て、(明示的に登録しない場合)一度変換しないと出現しないかと思います。 個人的には SKK 辞書に入っている単語がすべて補完に出てくれたほうが大変ありがたいのですが、そのような機能の実装予定はありますでしょうか? 大量の読みが覚えづらい候補も SKK 辞書には入っているので、補完頼りでないとかなり入力しにくく困っております。 AquaSKK では「一般辞書も検索する」というオプションがあって、これが可能になっています。 一応ユーザ辞書にすべて入れるという workaround はありますが、何十万という単語をユーザ辞書に入れるとメンテナンス性が低く、かなり難しいです。 ご検討いただけると大変ありがたく思います。