Michal Papis

Results 135 comments of Michal Papis

@foobarwidget - would it possible to have a version of passenger gem that does the `passenger-install-*` during gem installation? This way gem-compiler would work without any changes ... maybe except...

from `man bash`: > ``` > set [--abefhkmnptuvxBCEHPT] [-o option-name] [arg ...] > set [+abefhkmnptuvxBCEHPT] [+o option-name] [arg ...] > ``` > > ... > -T If set, any traps...

you could try to use a wrapper that checks what function is called and do reset color only in some cases, or ignoring the `__git_ps1` function: ``` bash [[ "...

that might be `unsetopt localtraps` try: ``` bash if [[ -n "${ZSH_VERSION:-}" ]] then unsetopt localtraps else set -T fi ``` an important point about Zsh is that it has...

this should work https://gist.github.com/mpapis/7ffdd6e97533f92a5cff you could shorten the read lines code: ``` bash __chruby_get_dirs() { # NEW LINE, BE CAREFUL typeset IFS=" " __dirs=( $( \cat - ) ) }...

@khusnetdinov please provide more details, where are the locales located, if you mark an issue `beginner-friendly` you have to provide more details, so someone starting with your project can just...

OSX 10.6 Railsinstaller will not be getting updates (not sure if it will be getting updates at all as I was preparing it in the past and I got no...

:+1: Adding `Bh.form_builder = false` in `config/initializers/` fixed `simple_form_for` for me, thanks! Is there anything stopping this from being merged?

@jordan-realfoto this is diferent problem, please open a new ticket, also try with 2.2.9 - if it works we will know we need to backport a patch to fix we...

Can you confirm it works with `rvm install ruby-2.1.10` and `ruby-2.2.9` and `ruby-2.3.6` - this are the latest versions in the given trees and should be fully compatible with earlier...