When I'm using Resque with rails (using ActionView 4.2.8), I get this error.
The stacktrace points to line 38 of sequel-rails-1.0.1/lib/sequel_rails/configuration.rb.
I found that just by changing: @environments ||= raw.reduce( to @environments ||= self[:raw].reduce(, things work out fine...
When I'm using Resque with rails (using ActionView 4.2.8), I get this error.
The stacktrace points to line
38ofsequel-rails-1.0.1/lib/sequel_rails/configuration.rb.I found that just by changing:
@environments ||= raw.reduce(to@environments ||= self[:raw].reduce(, things work out fine...