Ok, the problem is that Enumerator is a ruby 1.9 class. In REE there's a Enumerable:Enumerator. In 1.9 there's also binded as a module, so it could work by changing Enumerator.each to Enumerable::Enumerator.each
On Thu, Jan 10, 2013 at 6:35 PM, Tim Uckun <[email protected]> wrote: > The error message is > > uninitialized constant ActiveScaffold::Actions::Export::Enumerator > > Gist for the stack trace https://gist.github.com/4505964 > > REE 1.8.7 Rails 3.2.11 > > -- > You received this message because you are subscribed to the Google Groups > "ActiveScaffold : Ruby on Rails plugin" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/activescaffold?hl=en. > > -- You received this message because you are subscribed to the Google Groups "ActiveScaffold : Ruby on Rails plugin" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/activescaffold?hl=en.
