Re: [Rails] 3.2.13 breaks localized ActiveScaffold assets compilation

2013-03-19 Thread Yves-Eric
Hi Jeffrey, Awesome, that fixed it, thanks! For anyone facing this issue, the fix is not released yet, so bundle update active_scaffold won't do. You need this: gem active_scaffold, :git = git://github.com/activescaffold/active_scaffold.git, :tag = = v3.3.0.rc3 Thanks again, Yves-Eric

Re: [Rails] 3.2.13 breaks localized ActiveScaffold assets compilation

2013-03-19 Thread Yves-Eric
I managed to typo that line! For some weird reason it worked, but I noticed an error in a project that uses packaged gems... Of course there should not be a = inside the tag! The correct declaration is: gem active_scaffold, :git = git:// github.com/activescaffold/active_scaffold.git, :tag =

[Rails] 3.2.13 breaks localized ActiveScaffold assets compilation

2013-03-18 Thread Yves-Eric
Hi, I just tried upgrading to 3.2.13 a project that worked fine under 3.2.12, but that broke our assets pipeline compilation. It looks like compilation now chokes on ActiveScaffold asset 'date_picker_bridge.js.erb'. (Full stack trace below). The first line of that file is: %=

Re: [Rails] 3.2.13 breaks localized ActiveScaffold assets compilation

2013-03-18 Thread Jeffrey Jones
Hi Yves-Eric Have you tried adding |%# encoding: utf-8 % |to the top of the .erb file? Jeff On 19/03/13 11:58, Yves-Eric wrote: Hi, I just tried upgrading to 3.2.13 a project that worked fine under 3.2.12, but that broke our assets pipeline compilation. It looks like compilation now

Re: [Rails] 3.2.13 breaks localized ActiveScaffold assets compilation

2013-03-18 Thread Jeffrey Jones
Actually after a bit of research it looks like this was fixed in the below commit https://github.com/activescaffold/active_scaffold/commit/2536a29a1d21469278c95b7f2a87deba14040be6 to fix this issue https://github.com/activescaffold/active_scaffold/issues/249 Cheers Jeff On 19/03/13 11:58,