I have a project where flay is failing on Rails ERb files.
So I added
to Gemfile, but it still failed to parse ERb files.
Investigating with ruby -d, Bundler appears to be trying to load:
'flay-actionpack'
'flay/actionpack'
But the actual file is 'flay_actionpack.rb' so neither of those is going to work.
The code in Bundler responsible for this is: https://github.com/rubygems/bundler/blob/master/lib/bundler/runtime.rb#L65-L94
Clearly it must have worked at some point in the past, so my guess is that perhaps Bundler changed its mind on what separators it was going to permit?
I have a project where flay is failing on Rails ERb files.
So I added
to
Gemfile, but it still failed to parse ERb files.Investigating with
ruby -d, Bundler appears to be trying to load:'flay-actionpack''flay/actionpack'But the actual file is 'flay_actionpack.rb' so neither of those is going to work.
The code in Bundler responsible for this is: https://github.com/rubygems/bundler/blob/master/lib/bundler/runtime.rb#L65-L94
Clearly it must have worked at some point in the past, so my guess is that perhaps Bundler changed its mind on what separators it was going to permit?