Today I got this error in two projects on Heroku when I try to push my changes.
I tried to set
encoding: utf-8
I tried to put these lines
LANG="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
But they didn’t work.
It worked only when I migrated my stack to bamboo-ree-1.8.7. But I would like to use bamboo-mri-1.9.2.
Anyone notice this same problem?
Cheers
The “problem” is on simple_form.gemspec, actually it isn’t a real problem on it. The simple_form.gemspec contains accents:
https://github.com/plataformatec/simple_form/blob/master/simple_form.gemspec
and bamboo-mri-1.9.2 can’t deal with it.
I created an issue on simple_form and on heroku support. Both said to me to fork simple_form and remove the accents on gemspec and then point my gem to my fork
I didn’t like it, but I think that is the “solution” for now.
https://github.com/plataformatec/simple_form/issues/361