Tsutomu Kuroda

Results 24 comments of Tsutomu Kuroda

@gitpullgravity Thanks a lot. Your hack solved my problem!

@thorsteneckel The `mail-iso-2022-jp` is a hacked version of another gem that was maintained on https://github.com/ma2shita/mail_ja. I managed to make this gem work, but I did not have a solid understanding...

`docker ps -a` でコンテナIDを調べて、削除する ``` CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 0b89bb310e3a postgres "docker-entrypoint.s…" 9 minutes ago Created 5432/tcp dockerbaukis2_db_1 ``` ``` docker rm 0b89bb310e3a ```

あるいは `docker container prune` で停止中のコンテナをすべて削除してもよいが、Webコンテナも削除されてしまうので、`bundle install` の実行が必要となる。

``` $ sudo mkdir /sys/fs/cgroup/systemd $ sudo mount -t cgroup -o none,name=systemd cgroup /sys/fs/cgroup/systemd ``` https://github.com/docker/for-linux/issues/219#issuecomment-375160449

I posted a similar [question](https://stackoverflow.com/q/47298996/513554) to the Stackoverflow. It is strange that my problem does not occur on my Mac, but on Ubuntu 16.04. The Ubuntu box is freshly installed...

I found a workaround. Put these lines to the `brunch-config.js`: ``` watcher: { usePolling: true } ``` As the [documentation](http://brunch.io/docs/config#-watcher-) of Brunch says, watcher gets slower but can be more...

Thank you for being interested in my gem. I have to think carefully about your proposal, because it breaks existing projects that adopt this gem. For your question, see: https://github.com/kuroda/vue-rails-form-builder/blob/03cb4abb92eeb9352bbdb02d33b83e85c53a1c72/lib/vue-rails-form-builder/vue_options_resolver.rb#L42-L49

@tiagocassio Thanks. Could you add some description to the `README.md`?