Hello, When using model with a plural name I get an error with active_scaffold
class TradableTermsController < ApplicationController active_scaffold :tradable_terms do |conf| end end class TradableTerms < ActiveRecord::Base end error: uninitialized constant TradableTerm Active Scaffold tries to use model with singular case, while it should be plural. -- 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.
